From 7d0d3b676f6faf36722a0706f63ce6c9629f4dbe Mon Sep 17 00:00:00 2001 From: "nise.moe" Date: Sat, 2 Mar 2024 18:44:19 +0100 Subject: [PATCH] Don't check for uncommited changes --- nise-backend/Build.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/nise-backend/Build.sh b/nise-backend/Build.sh index dfc4765..9c3bf26 100755 --- a/nise-backend/Build.sh +++ b/nise-backend/Build.sh @@ -10,12 +10,6 @@ IMAGE_NAME="nise-backend" IMAGE_REGISTRY="git.gengo.tech/nuff" IMAGE_VERSION="latest" -# Check if there are uncommitted changes -if [[ -n $(git status --porcelain) ]]; then - echo "Error: There are uncommitted changes. Please commit them before building." - exit 1 -fi - rm -rf target/ # Clean and build Maven project