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

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2017-06-13 12:17:13 +0300
committernachoparker <nacho@ownyourbits.com>2017-06-28 08:15:40 +0300
commitecedf913065834e0d00fa3dc2ab73d1a66d4d572 (patch)
tree75937826ccf1595ca3f2ebd09354d3831f1875ac /nextcloudpi.sh
parent338adfb1e3aac67f7de423ab962b84ac1aad3265 (diff)
check version formatv0.12.18
Diffstat (limited to 'nextcloudpi.sh')
-rw-r--r--nextcloudpi.sh10
1 files changed, 6 insertions, 4 deletions
diff --git a/nextcloudpi.sh b/nextcloudpi.sh
index d56b3133..bdfb36fd 100644
--- a/nextcloudpi.sh
+++ b/nextcloudpi.sh
@@ -96,15 +96,17 @@ cat > /usr/local/bin/ncp-update <<'EOF'
ping -W 2 -w 1 -q github.com &>/dev/null || { echo "No internet connectivity"; exit 1; }
echo -e "Downloading updates"
rm -rf /tmp/ncp-update-tmp
-git clone -q --depth 1 https://github.com/nextcloud/nextcloudpi.git /tmp/ncp-update-tmp || exit 1
+git clone -q https://github.com/nextcloud/nextcloudpi.git /tmp/ncp-update-tmp || exit 1
cd /tmp/ncp-update-tmp
echo -e "Performing updates"
./update.sh
-VER=$( git describe --always --tags )
-echo $VER > /usr/local/etc/ncp-version
-echo $VER > /var/run/.ncp-latest-version
+VER=$( git describe --always --tags | grep -oP "v\d+\.\d+\.\d+" )
+grep -qP "v\d+\.\d+\.\d+" <<< $VER && { # check format
+ echo $VER > /usr/local/etc/ncp-version
+ echo $VER > /var/run/.ncp-latest-version
+}
cd /
rm -rf /tmp/ncp-update-tmp