mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-12 18:59:50 +03:00
27 lines
724 B
Diff
27 lines
724 B
Diff
diff --git a/version.sh b/version.sh
|
|
index 40e8d05..be8cd2e 100755
|
|
--- a/version.sh
|
|
+++ b/version.sh
|
|
@@ -17,17 +17,10 @@
|
|
# Note that the RELEASE-VERSION file should *not* be checked into git;
|
|
# please add it to your top-level .gitignore file.
|
|
|
|
-version=$(git describe)
|
|
-if [ -n ${version} ]; then
|
|
- # If we got something from git-describe, write the version to the
|
|
- # output file.
|
|
- echo ${version} > RELEASE-VERSION
|
|
-else
|
|
- version=$(cat RELEASE-VERSION)
|
|
- if [ -z ${version} ]; then
|
|
- echo "Cannot find the version number!" >&2
|
|
- exit 1
|
|
- fi
|
|
+version=$(cat RELEASE-VERSION)
|
|
+if [ -z ${version} ]; then
|
|
+ echo "Cannot find the version number!" >&2
|
|
+ exit 1
|
|
fi
|
|
|
|
echo ${version}
|
|
|