From e312c0006211685501d485110d304a98c7aadeb4 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Wed, 5 Aug 2020 09:20:11 +0200 Subject: [PATCH] Break && lists into separate commands Because of https://unix.stackexchange.com/a/490177 --- scripts/simapp/generate_template.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/simapp/generate_template.sh b/scripts/simapp/generate_template.sh index 26dee504..4bdba346 100755 --- a/scripts/simapp/generate_template.sh +++ b/scripts/simapp/generate_template.sh @@ -9,8 +9,10 @@ source "$SCRIPT_DIR"/env rm -rf "$SCRIPT_DIR/template" mkdir "$SCRIPT_DIR/template" -cp setup.sh "$SCRIPT_DIR/template/" && chmod +x "$SCRIPT_DIR/template/setup.sh" -cp run_simd.sh "$SCRIPT_DIR/template/" && chmod +x "$SCRIPT_DIR/template/run_simd.sh" +cp setup.sh "$SCRIPT_DIR/template/" +chmod +x "$SCRIPT_DIR/template/setup.sh" +cp run_simd.sh "$SCRIPT_DIR/template/" +chmod +x "$SCRIPT_DIR/template/run_simd.sh" # The usage of the accounts below is documented in README.md of this directory docker run --rm \