components/grails/files/grails
changeset 4915 48f204cc245c
parent 4914 b674fc72fe33
child 4916 b49f3ed3d841
--- a/components/grails/files/grails	Fri Oct 02 09:50:36 2015 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-if [ -z "$GRAILS_HOME" ]; then
-    echo "Please set GRAILS_HOME environment variable to location, where Grails is installed." 1>&2
-    echo "(Default location is /usr/grails/[version], e.g. /usr/grails/1.0.3)" 1>&2
-    exit 1
-fi
-
-if [ ! -f "$GRAILS_HOME/bin/startGrails" ]; then
-    echo "GRAILS_HOME is not set properly: $GRAILS_HOME" 1>&2
-    echo "It must contain path to the directory where Grails is installed!" 1>&2
-    exit 1
-fi
-
-. "$GRAILS_HOME/bin/startGrails"
-
-startGrails org.codehaus.groovy.grails.cli.GrailsScriptRunner "$@"
-