From 3ff23afa803a3e9a8920548abb5fb3bc171163aa Mon Sep 17 00:00:00 2001 From: rulanugrh Date: Wed, 2 Oct 2024 22:06:39 +0700 Subject: [PATCH] chore: update all file and code --- .github/workflows/testing_shell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing_shell.yml b/.github/workflows/testing_shell.yml index daf5295..0e7fe05 100644 --- a/.github/workflows/testing_shell.yml +++ b/.github/workflows/testing_shell.yml @@ -14,7 +14,7 @@ jobs: run: | d=$(date "+%Y-%m-%d") file="/tmp/test.txt.$$" && touch --date "$d" "$file" - echo $file && find . -type d \( -path ./playground -o -path ./simple_project -o -path ./basic -o -path ./advance/03_user_administration -o -path ./usefull_command \) -prune -o -iname "*.sh" -type f -newer $file > output.txt + echo $file && find . -type d \( -path ./playground -o -path ./simple_project -o -path ./basic -o -path ./advance/03_user_administration -o -path ./advance/01_advance_file -o -path ./usefull_command \) -prune -o -iname "*.sh" -type f -newer $file > output.txt for i in $(cat output.txt); do if [ -d "$i" ]; then echo "$i adalah folder."; elif [ -f "$i" ]; then chmod +x "$i" && bash "$i"; else echo "$i tidak ditemukan atau bukan file/folder."; fi; done - run: echo "status ${{ job.status }}"