cleanup
parent
801cf9c58e
commit
298476ae2f
|
|
@ -260,22 +260,22 @@ class AWS {
|
||||||
echo 'Cached Libraries for ${branchName} from previous builds:'
|
echo 'Cached Libraries for ${branchName} from previous builds:'
|
||||||
ls
|
ls
|
||||||
echo ' '
|
echo ' '
|
||||||
libDir="/${efsDirectoryName}/${buildUid}/${repositoryDirectoryName}/${buildParameters.projectPath}/Library"
|
libDir='/${efsDirectoryName}/${buildUid}/${repositoryDirectoryName}/${buildParameters.projectPath}/Library'
|
||||||
if [ -d "$libDir" ]; then
|
if [ -d '$libDir' ]; then
|
||||||
echo "Library folder already present, make sure you setup .gitignore correctly"
|
echo 'Library folder already present, make sure you setup .gitignore correctly'
|
||||||
echo "Cleaning out Library folder for this build"
|
echo 'Cleaning out Library folder for this build'
|
||||||
rm -r "$libDir"
|
rm -r '$libDir'
|
||||||
fi
|
fi
|
||||||
echo "Checking cache"
|
echo 'Checking cache'
|
||||||
# Restore cache
|
# Restore cache
|
||||||
latest=$(ls -t | head -1)
|
latest=$(ls -t | head -1)
|
||||||
if [ ! -z "$latest" ]; then
|
if [ ! -z '$latest' ]; then
|
||||||
echo "Library cache exists from build $latest from ${branchName}"
|
echo 'Library cache exists from build $latest from ${branchName}'
|
||||||
echo "Creating empty Library folder for cache"
|
echo 'Creating empty Library folder for cache'
|
||||||
mkdir "$libDir"
|
mkdir '$libDir'
|
||||||
unzip -q "$latest" -d /${efsDirectoryName}/${buildUid}/${repositoryDirectoryName}/${buildParameters.projectPath}/Library/.
|
unzip -q $latest -d /${efsDirectoryName}/${buildUid}/${repositoryDirectoryName}/${buildParameters.projectPath}/Library/.
|
||||||
else
|
else
|
||||||
echo "Cache does not exist"
|
echo 'Cache does not exist'
|
||||||
fi
|
fi
|
||||||
# Print out important directories
|
# Print out important directories
|
||||||
echo ' '
|
echo ' '
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -48,22 +48,22 @@ class AWS {
|
||||||
echo 'Cached Libraries for ${branchName} from previous builds:'
|
echo 'Cached Libraries for ${branchName} from previous builds:'
|
||||||
ls
|
ls
|
||||||
echo ' '
|
echo ' '
|
||||||
libDir="/${efsDirectoryName}/${buildUid}/${repositoryDirectoryName}/${buildParameters.projectPath}/Library"
|
libDir='/${efsDirectoryName}/${buildUid}/${repositoryDirectoryName}/${buildParameters.projectPath}/Library'
|
||||||
if [ -d "$libDir" ]; then
|
if [ -d '$libDir' ]; then
|
||||||
echo "Library folder already present, make sure you setup .gitignore correctly"
|
echo 'Library folder already present, make sure you setup .gitignore correctly'
|
||||||
echo "Cleaning out Library folder for this build"
|
echo 'Cleaning out Library folder for this build'
|
||||||
rm -r "$libDir"
|
rm -r '$libDir'
|
||||||
fi
|
fi
|
||||||
echo "Checking cache"
|
echo 'Checking cache'
|
||||||
# Restore cache
|
# Restore cache
|
||||||
latest=$(ls -t | head -1)
|
latest=$(ls -t | head -1)
|
||||||
if [ ! -z "$latest" ]; then
|
if [ ! -z '$latest' ]; then
|
||||||
echo "Library cache exists from build $latest from ${branchName}"
|
echo 'Library cache exists from build $latest from ${branchName}'
|
||||||
echo "Creating empty Library folder for cache"
|
echo 'Creating empty Library folder for cache'
|
||||||
mkdir "$libDir"
|
mkdir '$libDir'
|
||||||
unzip -q "$latest" -d /${efsDirectoryName}/${buildUid}/${repositoryDirectoryName}/${buildParameters.projectPath}/Library/.
|
unzip -q $latest -d /${efsDirectoryName}/${buildUid}/${repositoryDirectoryName}/${buildParameters.projectPath}/Library/.
|
||||||
else
|
else
|
||||||
echo "Cache does not exist"
|
echo 'Cache does not exist'
|
||||||
fi
|
fi
|
||||||
# Print out important directories
|
# Print out important directories
|
||||||
echo ' '
|
echo ' '
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue