mirror of
https://bitbucket.org/seefoe/dockerized-swg-src.git
synced 2026-07-14 00:01:36 -04:00
10 lines
177 B
Bash
Executable File
10 lines
177 B
Bash
Executable File
#/bin/bash
|
|
|
|
destination="tmp2"
|
|
sourcepath="tmp"
|
|
|
|
mkdir -p $destination/script
|
|
|
|
javac -classpath "$destination" -d "$destination" -sourcepath "$sourcepath" -g -deprecation "$1"
|
|
|