blob: 6a20835c80c1204bdf86b72c77af3e6b1dbc1c81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
# Copyright (C) 2020 Daniel Friesel <daniel.friesel@uos.de>
#
# SPDX-License-Identifier: MIT
set -ex
current="$(find public/static/v* | tail -n 1 | grep -o '..$')"
prev=$((current - 1))
next=$((current + 1))
git mv public/static/v${prev} public/static/v${next}
perl -pi -e "s!/v${current}/!/v${next}/!g" \
public/service-worker.js public/static/manifest.json \
public/static/css/material-icons.css
perl -pi -e "s!static-cache-v${current}!static-cache-v${next}!" public/service-worker.js
perl -pi -e "s!av = 'v${current}'!av = 'v${next}'!" templates/layouts/default.html.ep
|