1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-17 19:20:19 +01:00

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 11:33:12 +01:00
committed by Itai Caspi
parent 645d9d47a9
commit 29857412b3

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