From b64116705877ec517e84954b0db498e5edc63d11 Mon Sep 17 00:00:00 2001 From: Eder Luis Jorge Date: Sun, 3 Jan 2016 07:05:30 -0200 Subject: [PATCH] Update static.sh Fix for a File Exists error when creating a symlink. I face this problem when following get started guide on osx. --- coursebuilder/scripts/static.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coursebuilder/scripts/static.sh b/coursebuilder/scripts/static.sh index f931040a..454ec3b1 100755 --- a/coursebuilder/scripts/static.sh +++ b/coursebuilder/scripts/static.sh @@ -34,7 +34,7 @@ if [ "$ALLOW_STATIC_SERV" = true ] ; then mkdir $COURSEBUILDER_RESOURCES/_static/ fi if [ ! -L "$LN_SOURCE/_static" ]; then - ln -s $COURSEBUILDER_RESOURCES/_static/ $LN_SOURCE/ + ln -s $COURSEBUILDER_RESOURCES/_static/ $LN_SOURCE/_static fi # Unzip required files