From 4735e49b7bc12af7a1dc59073e6be56dde1db1af Mon Sep 17 00:00:00 2001 From: I <1091761+wx257osn2@users.noreply.github.com> Date: Mon, 25 Jul 2022 07:46:26 +0900 Subject: [PATCH] support multiple argument on run.sh --- run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.sh b/run.sh index b67622b..bf24983 100755 --- a/run.sh +++ b/run.sh @@ -22,8 +22,8 @@ function build { # create output directory [ ! -d out ] && mkdir out -if [ -n "$1" ]; then - langs="$1" +if [ -n "$*" ]; then + langs="$*" else langs="cpp go rust javascript julia kotlin python cython pypy dart" fi