Skip to content

Commit efdb9da

Browse files
committedJan 6, 2015
Fix buildbot (was broken by 04a1a44)
1 parent 083d19b commit efdb9da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎util/buildbot/buildwin32.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ cd $libdir
7171

7272
# Get minetest
7373
cd $builddir
74-
if [ -d $EXISTING_MINETEST_DIR ]; then
74+
if [ ! "x$EXISTING_MINETEST_DIR" = "x" ]; then
7575
ln -s $EXISTING_MINETEST_DIR minetest
7676
else
7777
[ -d minetest ] && (cd minetest && git pull) || (git clone https://github.com/minetest/minetest)

‎util/buildbot/buildwin64.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ cd $libdir
6666

6767
# Get minetest
6868
cd $builddir
69-
if [ -d $EXISTING_MINETEST_DIR ]; then
69+
if [ ! "x$EXISTING_MINETEST_DIR" = "x" ]; then
7070
ln -s $EXISTING_MINETEST_DIR minetest
7171
else
7272
[ -d minetest ] && (cd minetest && git pull) || (git clone https://github.com/minetest/minetest)

0 commit comments

Comments
 (0)
Please sign in to comment.