From: fredboy <fredboy@protonmail.com>
Date: Tue, 16 Apr 2024 20:32:53 +0000 (+0700)
Subject: Fix script
X-Git-Tag: alpha0.4.2~1
X-Git-Url: http://deadsoftware.ru/gitweb?a=commitdiff_plain;h=47a220e29bea530ffab9ca8d9efcc13a7e0610f3;p=cavedroid.git

Fix script
---

diff --git a/up-version.sh b/up-version.sh
index ed84b4d..7637355 100755
--- a/up-version.sh
+++ b/up-version.sh
@@ -1,8 +1,5 @@
 #!/usr/bin/env bash
 
-git stash > /dev/null
-stashed=$?
-
 new_version=$1
 
 new_version_string=$(echo $new_version | sed 's/\(alpha\|beta\)\(.*\)/\1 \2/')
@@ -16,7 +13,3 @@ git add build.gradle android/build.gradle core/src/ru/deadsoftware/cavedroid/Cav
 
 git commit -m "Update version"
 git tag "$new_version"
-
-if [ $stashed ]; then
-  git stash pop
-fi