Skip to content

Commit 34f9a10

Browse files
authored
fix: too much quoting in lib/deploy.sh (#737)
Commit 4ddb999 added some nice logging, but also added a lot of quotes. A few too many, in fact, as this: ``` ./do gen:html_manual MANUAL_NAME=isa VERSIONS=all ``` became: ``` deploy_do "gen:html_manual MANUAL_NAME=isa VERSIONS=all" ``` The quotes there turn "command argument argument" into a single command string where the spaces are part of the command itself. Remove the quotes so that the arguments are again treated as arguments.
1 parent 3dfd0fe commit 34f9a10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ deploy_log "Copy isa_explorer_spreadsheet"
9393
deploy_cp_recursive gen/isa_explorer/spreadsheet $DEPLOY_DIR/isa_explorer
9494

9595
deploy_log "Build manual"
96-
deploy_do "gen:html_manual MANUAL_NAME=isa VERSIONS=all"
96+
deploy_do gen:html_manual MANUAL_NAME=isa VERSIONS=all
9797
deploy_log "Copy manual html"
9898
deploy_cp_recursive gen/manual/isa/top/all/html $DEPLOY_DIR/manual
9999
deploy_log "Build html documentation for example_rv64_with_overlay"

0 commit comments

Comments
 (0)