fix fetch_dependencies

This commit is contained in:
philippe lhardy
2023-07-28 12:41:36 +02:00
parent f76f9e17fb
commit a8c11ad3d7

View File

@@ -47,10 +47,11 @@ fi
if [[ ! -e libs/$lib_artgaphic ]] if [[ ! -e libs/$lib_artgaphic ]]
then then
lib_artgaphic_source_file=../../sharedrawweb/dist/lib/$lib_artgaphic lib_artgaphic_source_file=../sharedrawweb/dist/lib/$lib_artgaphic
if [[ -f $lib_artgaphic_source_file ]] if [[ -f $lib_artgaphic_source_file ]]
then then
ln -s $lib_artgaphic_source_file libs/ # ../ since libs is one level below current project
ln -s ../$lib_artgaphic_source_file libs/
else else
log_error "Missing $lib_artgaphic_source_file. It is require to build it sharedrawweb project first" log_error "Missing $lib_artgaphic_source_file. It is require to build it sharedrawweb project first"
fi fi