Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Commit

Permalink
Remove semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
adamrenklint committed Jan 12, 2018
1 parent f3a4d49 commit 7b77fe7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions run-build-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ install_dependencies() {
# Leiningen
if [ -f project.clj ]
then
if [ -d $NETLIFY_CACHE_DIR/.m2 ];
if [ -d $NETLIFY_CACHE_DIR/.m2 ]
then
rm -rf $NETLIFY_BUILD_BASE/.m2
mv $NETLIFY_CACHE_DIR/.m2 $NETLIFY_BUILD_BASE/.m2
Expand All @@ -332,12 +332,12 @@ install_dependencies() {
# Boot
if [ -f build.boot ]
then
if [ -d $NETLIFY_CACHE_DIR/.m2 ];
if [ -d $NETLIFY_CACHE_DIR/.m2 ]
then
rm -rf $NETLIFY_BUILD_BASE/.m2
mv $NETLIFY_CACHE_DIR/.m2 $NETLIFY_BUILD_BASE/.m2
fi
if [ -d $NETLIFY_CACHE_DIR/.boot ];
if [ -d $NETLIFY_CACHE_DIR/.boot ]
then
rm -rf $NETLIFY_BUILD_BASE/.boot
mv $NETLIFY_CACHE_DIR/.boot $NETLIFY_BUILD_BASE/.boot
Expand Down

0 comments on commit 7b77fe7

Please sign in to comment.