From 6f64aed2f501a02aa0ab9387b5236630cd41a0fb Mon Sep 17 00:00:00 2001 From: "Cuma.Rull" <102359107+cumaRull@users.noreply.github.com> Date: Thu, 11 Jan 2024 10:51:58 +0700 Subject: [PATCH 1/2] Update upload.sh --- ci/upload.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/upload.sh b/ci/upload.sh index 437059a5af2..9eef5bf8d3c 100755 --- a/ci/upload.sh +++ b/ci/upload.sh @@ -1,5 +1,6 @@ #!/usr/bin/env bash set -e + cd ~/roms/$rom_name engzip=$(ls out/target/product/$device/*-eng*.zip | grep -v "retrofit" || true) otazip=$(ls out/target/product/$device/*-ota-*.zip | grep -v "hentai" | grep -v "evolution" || true) From 026cf3ea8bea541d1514a27e77206bae347030b9 Mon Sep 17 00:00:00 2001 From: "Cuma.Rull" <102359107+cumaRull@users.noreply.github.com> Date: Fri, 12 Jan 2024 22:45:12 +0700 Subject: [PATCH 2/2] Update test.sh --- ci/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test.sh b/ci/test.sh index e3073dfd1db..8b9a721429c 100755 --- a/ci/test.sh +++ b/ci/test.sh @@ -7,7 +7,7 @@ ccheck(){ if [[ $check -gt 0 ]]; then echo "$2"; exit 1; fi } -ccheck 'rm ' 'Please dont use rm inside script, use local manifest for this purpose.' +ccheck 'rm ' 'Please dont use rm inside script, use local manifest for this purpose .' ccheck 'find ' 'Please dont use find inside script, use local manifest for this purpose.' ccheck 'unlink ' 'Please dont use unlink inside script, use local manifest for this purpose.' ccheck 'shred ' 'Please dont use shred inside script, use local manifest for this purpose.'