cleanup
parent
2f5cdfefc6
commit
532ba73068
|
|
@ -263,12 +263,12 @@ class AWS {
|
||||||
ls
|
ls
|
||||||
echo ' '
|
echo ' '
|
||||||
|
|
||||||
libDir="/${efsDirectoryName}/${buildUid}/${repositoryDirectoryName}/${buildParameters.projectPath}/Library/"
|
libDir="/${efsDirectoryName}/${buildUid}/${repositoryDirectoryName}/${buildParameters.projectPath}/Library"
|
||||||
|
|
||||||
# if library directory doesn't exist create it,
|
# if library directory doesn't exist create it,
|
||||||
if [ -d $libDir ]; then
|
if [ -d $libDir ]; then
|
||||||
echo "Library folder already present, make sure you setup .gitignore correctly (cleaning out Library folder for this build)!"
|
echo "Library folder already present, make sure you setup .gitignore correctly (cleaning out Library folder for this build)!"
|
||||||
rm -r $libDir
|
rmdir -r $libDir
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Checking cache"
|
echo "Checking cache"
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -51,12 +51,12 @@ class AWS {
|
||||||
ls
|
ls
|
||||||
echo ' '
|
echo ' '
|
||||||
|
|
||||||
libDir="/${efsDirectoryName}/${buildUid}/${repositoryDirectoryName}/${buildParameters.projectPath}/Library/"
|
libDir="/${efsDirectoryName}/${buildUid}/${repositoryDirectoryName}/${buildParameters.projectPath}/Library"
|
||||||
|
|
||||||
# if library directory doesn't exist create it,
|
# if library directory doesn't exist create it,
|
||||||
if [ -d $libDir ]; then
|
if [ -d $libDir ]; then
|
||||||
echo "Library folder already present, make sure you setup .gitignore correctly (cleaning out Library folder for this build)!"
|
echo "Library folder already present, make sure you setup .gitignore correctly (cleaning out Library folder for this build)!"
|
||||||
rm -r $libDir
|
rmdir -r $libDir
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Checking cache"
|
echo "Checking cache"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue