mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
12 lines
198 B
Plaintext
12 lines
198 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
STAGED_GO_FILES=$(git diff --staged --name-only | grep "\.go$")
|
||
|
|
||
|
if [[ "$STAGED_GO_FILES" = "" ]]; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
echo "cleaning GO dependencies"
|
||
|
go mod tidy
|
||
|
git add go.mod go.sum
|