From 5898e72d6002e162ef9ade4bf689225197461d9d Mon Sep 17 00:00:00 2001 From: Chris Shantz <mnshantz@uwaterloo.ca> Date: Tue, 23 Jun 2020 10:12:08 -0400 Subject: [PATCH] Update build_gesso.sh changing --force and --symbolic to -fs so it will work in docker. --- build_gesso.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_gesso.sh b/build_gesso.sh index fb7f7cc1..7ce24e06 100755 --- a/build_gesso.sh +++ b/build_gesso.sh @@ -35,7 +35,7 @@ if [ -d "source" ]; then rm -rf source echo "Done removing old source directory ..." fi -ln --force --symbolic "../source" source +ln -fs "../source" source echo "Done symbolic linking source directory ..." echo "Removing style lint config and replacing with UW config ..." -- GitLab