split test and build

This commit is contained in:
zapashcanon 2019-05-01 02:39:22 +02:00
parent 6383eb9ac9
commit 2c0d1b8ff9
Signed by: zapashcanon
GPG Key ID: 8981C3C62D1D28F1
2 changed files with 12 additions and 4 deletions

View File

@ -16,9 +16,5 @@ set -eu
wget "https://unpkg.com/nes.css@latest/css/nes.min.css" -O nes.min.css
wget "https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" -O bootstrap.min.css )
( cd src/js
flow main.js )
echo "Done !"
)

12
scripts/test.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
set -eu
( cd "$(dirname "$0")/../"
( cd src/js
flow main.js )
echo "Done !"
)