mirror of
https://github.com/slavfox/Cozette.git
synced 2026-03-11 08:54:33 +00:00
9 lines
304 B
Bash
Executable file
9 lines
304 B
Bash
Executable file
#!/usr/bin/env sh
|
|
BITSNPICAS_URL="https://github.com/kreativekorp/bitsnpicas/releases/download/v2.0/BitsNPicas.jar"
|
|
mkdir -p deps
|
|
if [ ! -f deps/BitsNPicas.jar ]; then
|
|
echo "Downloading BitsNPicas.jar..."
|
|
wget -O deps/BitsNPicas.jar $BITSNPICAS_URL
|
|
echo "Done."
|
|
fi
|
|
java -jar deps/BitsNPicas.jar $@
|