diff options
| author | yalh76 <yalh@yahoo.com> | 2020-03-28 20:25:37 +0100 |
|---|---|---|
| committer | yalh76 <yalh@yahoo.com> | 2020-03-28 20:25:37 +0100 |
| commit | ede37a92321a7a1d4b5f3dc7b22146aa4a74d120 (patch) | |
| tree | 75ac7cbcd8beecb5db08bac176efe049a48eeba8 /scripts | |
| parent | 69a8e01cef936064cd38691f6811e571d352df07 (diff) | |
| download | mastodon_ynh-ede37a92321a7a1d4b5f3dc7b22146aa4a74d120.tar.gz mastodon_ynh-ede37a92321a7a1d4b5f3dc7b22146aa4a74d120.tar.bz2 mastodon_ynh-ede37a92321a7a1d4b5f3dc7b22146aa4a74d120.zip | |
Temporary workaround
for https://github.com/tootsuite/mastodon/issues/13292
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/install | 3 | ||||
| -rw-r--r-- | scripts/upgrade | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/scripts/install b/scripts/install index 989954b..7d7d4b8 100644 --- a/scripts/install +++ b/scripts/install @@ -110,6 +110,9 @@ ynh_app_setting_set --app=$app --key=final_path --value=$final_path mkdir $final_path ynh_setup_source --dest_dir="$final_path/live" +# Temporary workaround for https://github.com/tootsuite/mastodon/issues/13292 +ynh_replace_string --match_string="sidekiq-unique-jobs (6.0.18)" --replace_string="sidekiq-unique-jobs (6.0.20)" --target_file="$final_path/live/Gemfile.lock" + #================================================= # NGINX CONFIGURATION #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 32426a2..0bc44b3 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -184,6 +184,10 @@ then rsync -a "$final_path/live/.env.production" "$tmpdir/." ynh_secure_remove --file="$final_path/live/" ynh_setup_source --dest_dir="$final_path/live" + + # Temporary workaround for https://github.com/tootsuite/mastodon/issues/13292 + ynh_replace_string --match_string="sidekiq-unique-jobs (6.0.18)" --replace_string="sidekiq-unique-jobs (6.0.20)" --target_file="$final_path/live/Gemfile.lock" + if [ -d "$tmpdir/system" ]; then rsync -a "$tmpdir/system" "$final_path/live/public/." fi |
