From 9d0ccb00f0722fb3670cee37dbdff9da1b331256 Mon Sep 17 00:00:00 2001 From: Jerryy959 <1376723538@qq.com> Date: Wed, 21 Aug 2024 04:24:36 +0800 Subject: [PATCH 1/2] run.sh: Optimize the script, this would fixes #3. --- run.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/run.sh b/run.sh index 6c18f24..b722004 100755 --- a/run.sh +++ b/run.sh @@ -1,4 +1,5 @@ #!/bin/bash +rm -rf zcu102/proj make -C zcu102 checkout make -C zcu102 clean make -C zcu102 build -j$(nproc) From f7283dc85d94266bd7d4123be1a1c48aad880e77 Mon Sep 17 00:00:00 2001 From: Jerryy959 <1376723538@qq.com> Date: Wed, 21 Aug 2024 05:02:19 +0800 Subject: [PATCH 2/2] run.sh: Optimize the script. --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index b722004..f4a039d 100755 --- a/run.sh +++ b/run.sh @@ -1,5 +1,5 @@ #!/bin/bash rm -rf zcu102/proj -make -C zcu102 checkout +yes Y | make -C zcu102 checkout make -C zcu102 clean make -C zcu102 build -j$(nproc)