Check if directory already exists
This commit is contained in:
parent
6190639144
commit
e76a9d4e0a
|
@ -469,9 +469,11 @@ function mesh_tox_node {
|
||||||
if [ ! -d ${rootdir}${INSTALL_DIR} ]; then
|
if [ ! -d ${rootdir}${INSTALL_DIR} ]; then
|
||||||
mkdir -p ${rootdir}${INSTALL_DIR}
|
mkdir -p ${rootdir}${INSTALL_DIR}
|
||||||
fi
|
fi
|
||||||
git clone ${TOXCORE_REPO} ${rootdir}${INSTALL_DIR}/toxcore
|
if [ ! -d ${rootdir}${INSTALL_DIR}/toxcore ]; then
|
||||||
if [ ! "$?" = "0" ]; then
|
git clone ${TOXCORE_REPO} ${rootdir}${INSTALL_DIR}/toxcore
|
||||||
exit 429252
|
if [ ! "$?" = "0" ]; then
|
||||||
|
exit 429252
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
cd ${rootdir}$INSTALL_DIR/toxcore
|
cd ${rootdir}$INSTALL_DIR/toxcore
|
||||||
git checkout $TOXCORE_COMMIT -b $TOXCORE_COMMIT
|
git checkout $TOXCORE_COMMIT -b $TOXCORE_COMMIT
|
||||||
|
|
Loading…
Reference in New Issue