Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2014-08-16 16:57:04 +0400
committerKenneth Skovhede <kenneth@hexad.dk>2014-08-16 16:57:04 +0400
commitd77e6ffcf52d0ea43dacc49c6ab4701375f6aa37 (patch)
tree0a0e8dc184ad3885657e0502cafb8dca7e946931
parent481a7dc7ba2dd93561e1dae40fd3045bd53b5b6f (diff)
Changed the package filename to include the full version number to avoid confusion when two updates are released on the same day
-rwxr-xr-xbuild-preview-update.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-preview-update.sh b/build-preview-update.sh
index 1831b5155..e438fcdc2 100755
--- a/build-preview-update.sh
+++ b/build-preview-update.sh
@@ -3,9 +3,9 @@ RELEASE_TIMESTAMP=`date +%Y-%m-%d`
RELEASE_INC_VERSION=`cat Updates/build_version.txt`
RELEASE_INC_VERSION=$((RELEASE_INC_VERSION+1))
-RELEASE_NAME="2.0_preview_${RELEASE_TIMESTAMP}"
-RELEASE_CHANGEINFO=`cat changelog.txt`
RELEASE_VERSION="2.0.0.${RELEASE_INC_VERSION}"
+RELEASE_NAME="${RELEASE_VERSION}_preview_${RELEASE_TIMESTAMP}"
+RELEASE_CHANGEINFO=`cat changelog.txt`
RELEASE_FILE_NAME="duplicati-${RELEASE_NAME}"