Skip to content

Commit 13d62be

Browse files
committed
Remove unnecessary escaping
1 parent 958a982 commit 13d62be

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/buildAndTest-FreeBSD.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
cd $GITHUB_WORKSPACE
3131
export COMPILER=${{ matrix.compiler }}
3232
source ./scripts/compilerName.sh
33-
sudo pkg install -y cmake ${{ matrix.lua }} \"$C_COMPILER_PACKAGE\" \"$CXX_COMPILER_PACKAGE\"
33+
sudo pkg install -y cmake ${{ matrix.lua }} "$C_COMPILER_PACKAGE" "$CXX_COMPILER_PACKAGE"
3434
bash scripts/buildLuaRocks.sh
3535
sudo luarocks
3636
sudo luarocks install luaunit
@@ -42,9 +42,9 @@ jobs:
4242
cd $GITHUB_WORKSPACE
4343
export COMPILER=${{ matrix.compiler }}
4444
source scripts/compilerName.sh
45-
sudo luarocks config \"variables.CMAKE_C_COMPILER\" \"$C_COMPILER\"
46-
sudo luarocks config \"variables.CMAKE_CXX_COMPILER\" \"$CXX_COMPILER\"
47-
sudo CXX=\"$CXX_COMPILER\" CC=\"$C_COMPILER\" luarocks make
45+
sudo luarocks config "variables.CMAKE_CXX_COMPILER" "$CXX_COMPILER"
46+
sudo luarocks config "variables.CMAKE_C_COMPILER" "$C_COMPILER"
47+
sudo CXX="$CXX_COMPILER" CC="$C_COMPILER" luarocks make
4848
'
4949
- name: "Test Project"
5050
shell: freebsd {0}

0 commit comments

Comments
 (0)