Fix buildbot (was broken by 04a1a446cf
)
parent
083d19b3fc
commit
efdb9da619
|
@ -71,7 +71,7 @@ cd $libdir
|
||||||
|
|
||||||
# Get minetest
|
# Get minetest
|
||||||
cd $builddir
|
cd $builddir
|
||||||
if [ -d $EXISTING_MINETEST_DIR ]; then
|
if [ ! "x$EXISTING_MINETEST_DIR" = "x" ]; then
|
||||||
ln -s $EXISTING_MINETEST_DIR minetest
|
ln -s $EXISTING_MINETEST_DIR minetest
|
||||||
else
|
else
|
||||||
[ -d minetest ] && (cd minetest && git pull) || (git clone https://github.com/minetest/minetest)
|
[ -d minetest ] && (cd minetest && git pull) || (git clone https://github.com/minetest/minetest)
|
||||||
|
|
|
@ -66,7 +66,7 @@ cd $libdir
|
||||||
|
|
||||||
# Get minetest
|
# Get minetest
|
||||||
cd $builddir
|
cd $builddir
|
||||||
if [ -d $EXISTING_MINETEST_DIR ]; then
|
if [ ! "x$EXISTING_MINETEST_DIR" = "x" ]; then
|
||||||
ln -s $EXISTING_MINETEST_DIR minetest
|
ln -s $EXISTING_MINETEST_DIR minetest
|
||||||
else
|
else
|
||||||
[ -d minetest ] && (cd minetest && git pull) || (git clone https://github.com/minetest/minetest)
|
[ -d minetest ] && (cd minetest && git pull) || (git clone https://github.com/minetest/minetest)
|
||||||
|
|
Loading…
Reference in New Issue