forked from Team-m3c/portpofol_backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
85f5486
commit c492efa
Showing
1,991 changed files
with
548,063 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
@echo off | ||
if "%JAVA_HOME%"=="" echo Error: JAVA_HOME is not defined. | ||
if "%1"=="clean" rmdir /s /q temp bin 2>nul | ||
if not exist temp mkdir temp | ||
if not exist bin mkdir bin | ||
"%JAVA_HOME%/bin/javac" -sourcepath src/tools -d bin src/tools/org/h2/build/*.java | ||
"%JAVA_HOME%/bin/java" -Djava.net.useSystemProxies=true -Xmx256m -cp "bin;%JAVA_HOME%/lib/tools.jar;temp" org.h2.build.Build %* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
if [ -z "$JAVA_HOME" ] ; then | ||
if [[ "$OSTYPE" == "darwin"* ]]; then | ||
if [ -d "/System/Library/Frameworks/JavaVM.framework/Home" ] ; then | ||
export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Home | ||
else | ||
export JAVA_HOME=`/usr/libexec/java_home` | ||
fi | ||
fi | ||
fi | ||
if [ -z "$JAVA_HOME" ] ; then | ||
echo "Error: JAVA_HOME is not defined." | ||
fi | ||
if [ "$1" = "clean" ] ; then rm -rf temp bin ; fi | ||
if [ ! -d "temp" ] ; then mkdir temp ; fi | ||
if [ ! -d "bin" ] ; then mkdir bin ; fi | ||
"$JAVA_HOME/bin/javac" -sourcepath src/tools -d bin src/tools/org/h2/build/*.java | ||
"$JAVA_HOME/bin/java" -Xmx1g -cp "bin:$JAVA_HOME/lib/tools.jar:temp" org.h2.build.Build $@ |
Binary file not shown.
Oops, something went wrong.