Skip to content

Commit cdf4b83

Browse files
committed
insert path directly
1 parent b3311c7 commit cdf4b83

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/buildAndTest-FreeBSD.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
export COMPILER=${{ matrix.compiler }}
3232
source ./scripts/compilerName.sh
3333
sudo pkg install -y cmake ${{ matrix.lua }} "$C_COMPILER_PACKAGE" "$CXX_COMPILER_PACKAGE"
34-
bash scripts/buildLuaRocks.sh
34+
bash -x scripts/buildLuaRocks.sh
3535
sudo luarocks
3636
sudo luarocks install luaunit
3737
'

scripts/buildLuaRocks.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11

22
case $(uname -v) in
33
*FreeBSD*)
4-
export LUA_BIN_PATH=/usr/local/bin/
54
sudo pkg install -y unzip wget gmake readline curl
65
;;
76
*)
@@ -15,7 +14,7 @@ rm luarocks-3.12.2.tar.gz
1514
cd luarocks-3.12.2
1615
case $(uname -v) in
1716
*FreeBSD*)
18-
./configure --with-lua-bin $LUA_BIN_PATH
17+
./configure --with-lua-bin "usr/local/bin"
1918
;;
2019
*)
2120
./configure

0 commit comments

Comments
 (0)