mirror of
https://github.com/actions/checkout.git
synced 2024-12-05 16:16:21 +03:00
18 lines
576 B
Bash
Executable File
18 lines
576 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$(git status --porcelain)" != "" ]]; then
|
|
echo ----------------------------------------
|
|
echo git status
|
|
echo ----------------------------------------
|
|
git status
|
|
echo ----------------------------------------
|
|
echo git diff
|
|
echo ----------------------------------------
|
|
git diff
|
|
echo ----------------------------------------
|
|
echo Troubleshooting
|
|
echo ----------------------------------------
|
|
echo "::error::Unstaged changes detected. Locally try running: git clean -ffdx && npm ci && npm run all"
|
|
exit 1
|
|
fi
|