Files
artloglaby/fetch_dependencies.sh
philippe lhardy 032cb6a0f5 depends on sharedrawweb library
create a fetch_dependencies.sh lazy script
move dependencies into libs/ directory
2018-06-15 22:47:23 +02:00

17 lines
290 B
Bash
Executable File

#!/bin/bash
if [[ ! -d ../sharedrawweb ]]
then
echo "[ERROR] expected a sharedrawweb project parent ( for exports )" >&2
fi
if [[ ! -d libs ]]
then
mkdir libs
fi
if [[ ! -e libs/artgaphics-0.1.0.jar ]]
then
ln -s ../../sharedrawweb/dist/lib/artgaphics-0.1.0.jar libs/
fi