depends on sharedrawweb library
create a fetch_dependencies.sh lazy script move dependencies into libs/ directory
This commit is contained in:
16
fetch_dependencies.sh
Executable file
16
fetch_dependencies.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user