autoserve: add option to serve prod

This commit is contained in:
Adhityaa Chandrasekar 2019-05-01 18:06:51 -04:00
parent 060520bd7f
commit 409af7f205

View File

@ -9,7 +9,11 @@ ctrl_c() {
exit exit
} }
version=devel if [[ "$1" == "" ]]; then
version=devel
else
version=$1
fi
binary_pid= binary_pid=
if make $version -j$(($(nproc) + 1)); then if make $version -j$(($(nproc) + 1)); then