mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-26 04:35:39 +03:00
8 lines
170 B
Bash
8 lines
170 B
Bash
#!/bin/sh
|
|
|
|
ver_new="$1"
|
|
ver_old="$2"
|
|
|
|
if [ "${ver_new%-r*}" != "${ver_old%-r*}" ]; then
|
|
echo ' * Run "occ upgrade" to finish upgrading your NextCloud instance!' >&2
|
|
fi
|