From 9fb9985d675b0c6d92e6422d10ba962ada25dfdc Mon Sep 17 00:00:00 2001 From: Christopher Roy Bratusek Date: Fri, 15 Jun 2018 21:37:24 +0200 Subject: [PATCH] migrate from Bucket to Substratum --- CommonInstaller | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CommonInstaller b/CommonInstaller index 4ea21ff..cf99b09 100644 --- a/CommonInstaller +++ b/CommonInstaller @@ -1,6 +1,6 @@ #!/sbin/sh -VERSION=17.1.20180507 +VERSION=17.2.99999999 GOOGLE_APPS="GoogleFeedback GoogleLoginService @@ -1163,9 +1163,9 @@ check_cfg_apps () { sed -e 's/KeePassDroid/KeePassDX/g' -i "${cfg_apps}" fi - # <= 17.0~beta1 has Substratum instead of Bucket (LibreSubtratum), migrate - if grep -q Substratum "${cfg_apps}"; then - sed -e 's/Substratum/Bucket/g' -i "${cfg_apps}" + # <= 17.0~beta1 && <= 17.2~beta1 has Bucket (LibreSubtratum) instead of Substratum, migrate + if grep -q Bucket "${cfg_apps}"; then + sed -e 's/Bucket/Substratum/g' -i "${cfg_apps}" fi }