From 5d70463d10392288caee1d9e253740687a407777 Mon Sep 17 00:00:00 2001 From: Felix Goding <felgo673@student.liu.se> Date: Tue, 18 Feb 2020 11:46:08 +0100 Subject: [PATCH] Added bash file to build all python files --- build.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 build.sh diff --git a/build.sh b/build.sh new file mode 100644 index 00000000..aebc1105 --- /dev/null +++ b/build.sh @@ -0,0 +1,5 @@ +#! bin/sh +for n in `find . -name "*.py"` +do + python $n +done \ No newline at end of file -- GitLab