From 29857412b3689b9cfbe312c20b8f6d4ab4800dc6 Mon Sep 17 00:00:00 2001 From: Justin Date: Mon, 8 Jan 2018 11:33:12 +0100 Subject: [PATCH] Add force flag to library symbolic link Link step fails if continuing installation after interruption, requiring manual deletion of the link. Adding a force flag overrides the existing symbolic link from attempted installation in the newly created virtual environment. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 4f2a775..dcebc64 100755 --- a/install.sh +++ b/install.sh @@ -156,7 +156,7 @@ if [ ${INSTALL_DASHBOARD} -eq 1 ]; then libs=( wx ) for lib in ${libs[@]} do - ln -s $lib_system_path/$lib $lib_virtualenv_path/$lib + ln -sf $lib_system_path/$lib $lib_virtualenv_path/$lib done fi