Skip to content

Commit fdfaf89

Browse files
committed
Fix version.moon parsing again
1 parent dc48827 commit fdfaf89

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build-binaries.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
cd ${{ github.workspace }}
9595
cd moonscript
9696
echo version = \"${{ github.ref_name }}\" > version.moon
97-
echo { version: version, print_version: -> print \"Garry's Mod MoonScript #{version}\" } >> version.moon
97+
echo "{ version: version, print_version: -> print \"Garry's Mod MoonScript #{version}\" }" >> version.moon
9898
cat version.moon
9999
100100
- name: Update version.moon (prerelease)
@@ -105,7 +105,7 @@ jobs:
105105
cd moonscript
106106
shortSha=$(git rev-parse --short ${{ github.sha }})
107107
echo version = \"prerelease-"$shortSha"\" > version.moon
108-
echo { version: version, print_version: -> print \"Garry's Mod MoonScript #{version}\" } >> version.moon
108+
echo "{ version: version, print_version: -> print \"Garry's Mod MoonScript #{version}\" }" >> version.moon
109109
cat version.moon
110110
111111
# Compile all moonscript modules using latest compiler

0 commit comments

Comments
 (0)