create-droid 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/gradle/setupGradle.js +3 -12
- package/package.json +1 -1
|
@@ -83,7 +83,7 @@ while [ -h "$PRG" ] ; do
|
|
|
83
83
|
PRG=\`dirname "$PRG"\`"/$link"
|
|
84
84
|
fi
|
|
85
85
|
done
|
|
86
|
-
SAVED="
|
|
86
|
+
SAVED="\`pwd\`"
|
|
87
87
|
cd "\`dirname \\"$PRG\\"\`/" >/dev/null
|
|
88
88
|
APP_HOME="\`pwd -P\`"
|
|
89
89
|
cd "$SAVED" >/dev/null
|
|
@@ -218,15 +218,6 @@ if $cygwin ; then
|
|
|
218
218
|
esac
|
|
219
219
|
fi
|
|
220
220
|
|
|
221
|
-
#
|
|
222
|
-
|
|
223
|
-
for i do printf %s\\\\n "$i" | sed "s/'/'\\\\\\\\''/g;1s/^/'/;\$s/\$/' \\\\\\\\/" ; done
|
|
224
|
-
echo " "
|
|
225
|
-
}
|
|
226
|
-
APP_ARGS=$(save "$@")
|
|
227
|
-
|
|
228
|
-
# Collect all arguments for the java command, following the shell quoting and substitution rules
|
|
229
|
-
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\\"-Dorg.gradle.appname=$APP_BASE_NAME\\"" -classpath "\\"$CLASSPATH\\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
|
|
230
|
-
|
|
231
|
-
exec "$JAVACMD" "$@"
|
|
221
|
+
# Collect all arguments for the java command
|
|
222
|
+
exec "$JAVACMD" $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "-Dorg.gradle.appname=$APP_BASE_NAME" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
|
|
232
223
|
`;
|