Remove unused scripts

This commit is contained in:
Alexander Udalov
2012-11-27 14:48:28 +04:00
parent 74ca357502
commit b7a4349827
2 changed files with 0 additions and 39 deletions
-32
View File
@@ -1,32 +0,0 @@
#!/bin/sh -e
die() {
echo "$@" >&2
exit 1
}
root=`cd $(dirname $0)/..; pwd`
ideaRoot=
for d in $root/ideaSDK /Applications/Nika-*.app; do
if [ -d "$d/lib" ]; then
ideaRoot="$d"
break
fi
done
test -n "$ideaRoot" || die "Idea root not found"
classpath="$root/out/production/cli"
classpath="$classpath:$root/out/production/backend:$root/out/production/frontend:$root/out/production/frontend.java:$root/out/production/jet.as.java.psi:$root/out/production/util"
classpath="$classpath:$root/out/production/stdlib:$root/out/production/runtime"
classpath="$classpath:$root/lib/*:$ideaRoot/lib/*:$ideaRoot/lib/rt/*"
classpath="$classpath:$root/dependencies/jline-2.6.jar"
exec java $JAVA_OPTS \
-ea \
-classpath "$classpath" \
org.jetbrains.jet.cli.jvm.K2JVMCompiler \
"$@"
# vim: set ts=4 sw=4 et:
-7
View File
@@ -1,7 +0,0 @@
#!/bin/sh -e
cd $(dirname $0)/..
exec java -classpath 'dist/classes/tests:compiler/frontend/src:dist/classes/runtime:dist/classes/compiler:lib/*:ideaSDL/core/*:ideaSDK/lib/*' "$@"
# vim: set ts=4 sw=4 et ft=sh: