Fix nightly's check for existing sandbox
Broken in commit 70c03561
, v4.3.12.
This commit is contained in:
parent
c77db95fad
commit
c7d9d4fcf4
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ in
|
||||||
# Make sandbox
|
# Make sandbox
|
||||||
if [ -d "${WORKDIR}" ]
|
if [ -d "${WORKDIR}" ]
|
||||||
then
|
then
|
||||||
! [ -d "${WORKDIR}"/empserver/.git ] || err "Invalid sandbox, missing .git directory"
|
[ -d "${WORKDIR}"/empserver/.git ] || err "Invalid sandbox, missing .git directory"
|
||||||
else
|
else
|
||||||
echo making directory
|
echo making directory
|
||||||
mkdir "${WORKDIR}" || warn "Could not create ${BOXDIR}/${WORKDIR}"
|
mkdir "${WORKDIR}" || warn "Could not create ${BOXDIR}/${WORKDIR}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue