Skip to content

Commit

Permalink
add proper quotes so parentheses are not interpreted
Browse files Browse the repository at this point in the history
  • Loading branch information
myk002 committed Nov 30, 2024
1 parent ef57a66 commit 057c3fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/generate-symbols.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
echo "waiting for DF to start"
sleep 0.5
done
df_ver=`./dfhack-run lua print(dfhack.gui.getDFViewscreen(true).str_version)`
df_ver=`./dfhack-run lua 'print(dfhack.gui.getDFViewscreen(true).str_version)'`
sed -i "s/v0.50.0 linux64 STEAM/v0.${df_ver} linux64 STEAM/" ../xml/symbols.xml
fi
Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:
echo "waiting for DF to start"
sleep 0.5
done
df_ver=`./dfhack-run.exe lua print(dfhack.gui.getDFViewscreen(true).str_version)`
df_ver=`./dfhack-run.exe lua 'print(dfhack.gui.getDFViewscreen(true).str_version)'`
sed -i "s/v0.50.0 win64 STEAM/v0.${df_ver} win64 STEAM/" ../xml/symbols.xml
- name: Merge updates
shell: bash
Expand Down

0 comments on commit 057c3fa

Please sign in to comment.