mirror of
https://github.com/mx42/codingame_code_of_kutulu.git
synced 2026-01-13 21:29:50 +01:00
10 lines
234 B
Bash
Executable File
10 lines
234 B
Bash
Executable File
#!/bin/bash
|
|
|
|
BUNDLER=com.truelaurel.codingame.tool.bundle.BundlerMain
|
|
BASENAME=$(basename $0)
|
|
NAME=${BASENAME##enhance}
|
|
|
|
echo "Continuously testing and bundling $NAME"
|
|
sbt "~ ; testOnly **.${NAME}Test ; runMain $BUNDLER $NAME.scala"
|
|
|