Skip to content

Commit 92c5524

Browse files
committed
Fixed: bootstrap(s).sh has failed if the build directory exists; api.lua has executes bit
1 parent 529804c commit 92c5524

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cd third_party
88
cd -
99

1010
# Common
11-
rm -r build && mkdir -p build && cd build
11+
rm -rf build && mkdir -p build && cd build
1212

1313
if [[ "$OSTYPE" == "darwin"* ]]; then
1414
LIBS=$PWD/../third_party/mosquitto/build/lib/libmosquitto.dylib

test/api.lua

100644100755
File mode changed.

third_party/bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e -x
44

55
cd mosquitto
66
git checkout v1.4.10
7-
rm -r build
7+
rm -rf build
88
mkdir -p build
99
cd build
1010

0 commit comments

Comments
 (0)