Skip to content
Snippets Groups Projects
Commit 7a36eebd authored by david_williams's avatar david_williams
Browse files

improve daily cleanup scripts

parent 1875e48f
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ function removeIf ()
rm -fr $foundDirectory
rc=$?
if [ rc -eq 0 ]
if [ $rc -eq 0 ]
then
echo " removed: $foundDirectory";
else
......@@ -83,7 +83,7 @@ function removeArtifactsDirIf ()
rm -fr $foundDirectory
rc=$?
if [ rc -eq 0 ]
if [ $rc -eq 0 ]
then
echo " removed: $foundDirectory";
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment