8 lines
141 B
Bash
Executable File
8 lines
141 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
../gradlew :html:build
|
|
wait
|
|
if [[ -d ../release/webapp/ ]]; then
|
|
python3 -m http.server 8100 -d ../release/webapp/
|
|
fi
|