Skip to content

Commit

Permalink
Use 4-space indentation in all shell scripts
Browse files Browse the repository at this point in the history
This had been done everywhere except in init-tests-after-clone.sh.
  • Loading branch information
EliahKagan committed Oct 3, 2023
1 parent be53823 commit e604b46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions init-tests-after-clone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
set -e

if [[ -z "$TRAVIS" ]]; then
read -rp "This operation will destroy locally modified files. Continue ? [N/y]: " answer
if [[ ! $answer =~ [yY] ]]; then
exit 2
fi
read -rp "This operation will destroy locally modified files. Continue ? [N/y]: " answer
if [[ ! $answer =~ [yY] ]]; then
exit 2
fi
fi

git tag __testing_point__
Expand Down

0 comments on commit e604b46

Please sign in to comment.