Sign off @ 2018-5-16

This commit is contained in:
Sotr
2018-05-16 02:44:35 +08:00
commit 9cf714090e
12 changed files with 1236 additions and 0 deletions

12
scripts/inst.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
(
set -e
basedir="$pwd"
(git submodule update --init --remote && chmod +x scripts/build.sh && ./scripts/build.sh "$basedir" "$1" "$2") || (
echo "Failed to build Akarin"
exit 1
) || exit 1
)