mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
9 lines
158 B
Bash
9 lines
158 B
Bash
#!/bin/sh
|
|
ver_old=$2
|
|
|
|
if [ "$(apk version -t "$ver_old" '1.11.30-r2')" = '<' ]; then
|
|
mv -f /etc/riot-web/config.json /etc/element-web/config.json
|
|
fi
|
|
|
|
exit 0
|