Remove deprecated script

This commit is contained in:
Alexandre Archambault 2017-10-31 23:10:17 +01:00
parent 2d8d11f4f1
commit 5a827a6340
1 changed files with 0 additions and 16 deletions

View File

@ -1,16 +0,0 @@
#!/bin/bash
set -e
cd "$(dirname "$0")/.."
if [ ! -e cli/target/scala-2.11/proguard/coursier-standalone.jar ]; then
echo "Generating proguarded JAR..." 1>&2
sbt ++2.11.11 cli/proguard:proguard
fi
cat > coursier-standalone << EOF
#!/bin/sh
exec java -noverify -cp "\$0" coursier.cli.Coursier "\$@"
EOF
cat cli/target/scala-2.11/proguard/coursier-standalone.jar >> coursier-standalone
chmod +x coursier-standalone