From b7a43498275c163469cfe22e95a2576784227b7f Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Tue, 27 Nov 2012 14:48:28 +0400 Subject: [PATCH] Remove unused scripts --- bin/kotlin | 32 -------------------------------- bin/run-test | 7 ------- 2 files changed, 39 deletions(-) delete mode 100755 bin/kotlin delete mode 100755 bin/run-test diff --git a/bin/kotlin b/bin/kotlin deleted file mode 100755 index c69766e61cf..00000000000 --- a/bin/kotlin +++ /dev/null @@ -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: diff --git a/bin/run-test b/bin/run-test deleted file mode 100755 index 397695f314a..00000000000 --- a/bin/run-test +++ /dev/null @@ -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: