Selaa lähdekoodia

scripts/kernel_bump: Do no run on dirty repositories

We want to avoid starting a process when we know it will fail later.

Signed-off-by: Olliver Schinagl <[email protected]>
Olliver Schinagl 1 vuosi sitten
vanhempi
sitoutus
f9ac106779
1 muutettua tiedostoa jossa 5 lisäystä ja 0 poistoa
  1. 5 0
      scripts/kernel_bump.sh

+ 5 - 0
scripts/kernel_bump.sh

@@ -77,6 +77,11 @@ init()
 	initial_branch="$(git rev-parse --abbrev-ref HEAD)"
 	initial_commitish="$(git rev-parse HEAD)"
 
+	if [ -n "$(git status --porcelain | grep -v '^?? .*')" ]; then
+		echo 'Git respository not in a clean state, will not continue.'
+		exit 1
+	fi
+
 	source_version="${source_version#v}"
 	target_version="${target_version#v}"