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.
This commit is contained in:
Justin
2018-01-08 20:36:54 +02:00
committed by Itai Caspi
parent 645d9d47a9
commit 29857412b3
+1 -1
View File
@@ -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