chg: [config] updated regex to make it more generic

phpword_v0.18.1
Cédric Bonhomme 2021-05-06 15:01:53 +02:00
parent 066fa96d7d
commit ab39699cef
No known key found for this signature in database
GPG Key ID: A1CB94DE57B7A70D
1 changed files with 6 additions and 8 deletions

View File

@ -1,9 +1,7 @@
version=$(cat ./VERSION.json)
version_affected='{"major":2, "minor":10, "hotfix":3}'
if [[ $version == "$version_affected" ]]; then
conf_file='./config/autoload/local.php'
if [ -f "$conf_file" ]; then
sed -i 's/https:\/\/objects.monarc.lu\/api\/v1\//https:\/\/objects.monarc.lu\/api\//g' "$conf_file"
echo "Done for $conf_file"
fi
#! /usr/bin/env bash
conf_file='./config/autoload/local.php'
if [ -f "$conf_file" ]; then
sed -E -i "s/(.*) => (.*)\/v1/\1 => \2/g" "$conf_file"
echo "Done for $conf_file"
fi