Skip to content

Commit

Permalink
chore(ci): print git status in simtest clippy.sh (#4530)
Browse files Browse the repository at this point in the history
* chore(ci): print git status in simtest clippy.sh

* remove echo (to allow colors)
  • Loading branch information
thibault-martinez authored Dec 18, 2024
1 parent 01b20d6 commit 6b52248
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions scripts/simtest/clippy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# verify that git repo is clean
if [[ -n $(git status -s) ]]; then
echo "Working directory is not clean. Please commit all changes before running this script."
git status -s
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion scripts/simtest/simtest-cov.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# verify that git repo is clean
if [[ -n $(git status -s) ]]; then
echo "Working directory is not clean. Please commit all changes before running this script."
echo $(git status -s)
git status -s
exit 1
fi

Expand Down

0 comments on commit 6b52248

Please sign in to comment.