summaryrefslogtreecommitdiff
path: root/src/ui/gwt/Editor-compile
diff options
context:
space:
mode:
authorJohn J. Camilleri <john@digitalgrammars.com>2018-11-15 10:33:31 +0100
committerJohn J. Camilleri <john@digitalgrammars.com>2018-11-15 10:33:31 +0100
commit735f5ff76f79ca53a1b2ed8cc0e13a75c9a01f5d (patch)
tree707e0f575302284d17345f61899569ab16711ff2 /src/ui/gwt/Editor-compile
parent422248f11fdb1aa76af72bee67d30ea8d63fa892 (diff)
Remove `src/ui` folder, moved to:
https://github.com/GrammaticalFramework/gf-offline-translator
Diffstat (limited to 'src/ui/gwt/Editor-compile')
-rw-r--r--src/ui/gwt/Editor-compile17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/ui/gwt/Editor-compile b/src/ui/gwt/Editor-compile
deleted file mode 100644
index 4106298ea..000000000
--- a/src/ui/gwt/Editor-compile
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-APPDIR=`dirname $0`;
-
-if [ -z "$GWT_CLASSPATH" ]; then
- echo 'ERROR: $GWT_CLASSPATH is not set'
- echo 'Set $GWT_CLASSPATH to point to the GWT JAR files. For example:'
- echo 'export GWT_DIR="/Users/bringert/src/gwt-2.0.4"'
- echo 'export GWT_CLASSPATH="$GWT_DIR/gwt-user.jar:$GWT_DIR/gwt-dev.jar"'
- exit 1
-fi
-
-if [ `uname` = "Darwin" ]; then
- GWT_JAVA_OPTS=-XstartOnFirstThread
-fi
-
-java $GWT_JAVA_OPTS -Xmx256M -cp "$APPDIR/src:$APPDIR/bin:$GWT_CLASSPATH" com.google.gwt.dev.Compiler -war "$APPDIR/www/editor" "$@" org.grammaticalframework.ui.gwt.EditorApp;