diff options
| author | Kostya <mail@sartin.in> | 2026-07-25 08:25:53 +0000 |
|---|---|---|
| committer | Kostya <mail@sartin.in> | 2026-07-25 08:25:53 +0000 |
| commit | 0290b3ea1c810f21ce29efc3b7f24969aeeba9c4 (patch) | |
| tree | a23e2d7cf10168b28d689181a4530720476a914b /run.sh | |
| parent | 5504ca88e98f8451a6dc1c719862f32ca54bfc50 (diff) | |
| download | java-bootstrap-0290b3ea1c810f21ce29efc3b7f24969aeeba9c4.tar.gz java-bootstrap-0290b3ea1c810f21ce29efc3b7f24969aeeba9c4.tar.xz java-bootstrap-0290b3ea1c810f21ce29efc3b7f24969aeeba9c4.zip | |
build scripts
Diffstat (limited to 'run.sh')
| -rw-r--r-- | run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -4,7 +4,7 @@ | |||
| 4 | rm -rf bin && mkdir bin | 4 | rm -rf bin && mkdir bin |
| 5 | 5 | ||
| 6 | # run the app if compilation succeeded | 6 | # run the app if compilation succeeded |
| 7 | if javac -d bin -cp "lib/*" src/com/example/App.java; then | 7 | if javac -d bin -cp "lib/*" src/main/java/com/example/App.java; then |
| 8 | echo "--- Running Application ---" | 8 | echo "--- Running Application ---" |
| 9 | java -cp "bin:lib/*" com.example.App | 9 | java -cp "bin:lib/*" com.example.App |
| 10 | else | 10 | else |