Skip to content

Commit

Permalink
remove repopick [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Apon77 committed Oct 20, 2021
1 parent fb0b1d0 commit fd2a310
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ if [[ $sync_check != *$sync_string* ]]; then echo Please follow repo sync line o
fetch_check=$(grep 'git fetch ' $CIRRUS_WORKING_DIR/build_rom.sh | wc -l)
if [[ $fetch_check -gt 0 ]]; then echo Please dont use fetch inside script, use local manifest for this purpose.; exit 1; fi

pick_check=$(grep 'repopick ' $CIRRUS_WORKING_DIR/build_rom.sh | wc -l)
if [[ $pick_check -gt 0 ]]; then echo Please dont use repopick inside script, use local manifest for this purpose.; exit 1; fi

cd_check=$(grep "cd *" $CIRRUS_WORKING_DIR/build_rom.sh | wc -l)
if [[ $cd_check -gt 0 ]]; then echo Please dont use cd inside script, use local manifest for this purpose.; exit 1; fi

Expand Down

0 comments on commit fd2a310

Please sign in to comment.