pull/235/head
mdugdale 2021-04-13 23:50:53 +01:00
parent a539d2be07
commit 5adb9c2222
3 changed files with 5 additions and 5 deletions

4
dist/index.js vendored
View File

@ -271,8 +271,8 @@ class AWS {
# 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/*" rm -r $libDir
else else
echo "Creating Library folder" echo "Creating Library folder"
mkdir $libDir mkdir $libDir

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -59,8 +59,8 @@ class AWS {
# 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/*" rm -r $libDir
else else
echo "Creating Library folder" echo "Creating Library folder"
mkdir $libDir mkdir $libDir