pull/235/head
mdugdale 2021-04-05 14:08:06 +01:00
parent 082ede0c69
commit bc8a08fb7f
3 changed files with 7 additions and 7 deletions

6
dist/index.js vendored
View File

@ -250,10 +250,10 @@ class AWS {
cd /${efsDirectoryName}/ cd /${efsDirectoryName}/
# Look for usable cache # Look for usable cache
if [ ! -d $cacheDirectoryName ]; then if [ ! -d ${cacheDirectoryName} ]; then
mkdir $cacheDirectoryName mkdir ${cacheDirectoryName}
fi fi
cd $cacheDirectoryName cd ${cacheDirectoryName}
if [ ! -d "${branchName}" ]; then if [ ! -d "${branchName}" ]; then
mkdir "${branchName}" mkdir "${branchName}"
fi fi

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -38,10 +38,10 @@ class AWS {
cd /${efsDirectoryName}/ cd /${efsDirectoryName}/
# Look for usable cache # Look for usable cache
if [ ! -d $cacheDirectoryName ]; then if [ ! -d ${cacheDirectoryName} ]; then
mkdir $cacheDirectoryName mkdir ${cacheDirectoryName}
fi fi
cd $cacheDirectoryName cd ${cacheDirectoryName}
if [ ! -d "${branchName}" ]; then if [ ! -d "${branchName}" ]; then
mkdir "${branchName}" mkdir "${branchName}"
fi fi