mirror of
https://github.com/nextcloud/nextcloudpi.git
synced 2026-01-09 06:32:00 -03:30
14 lines
392 B
Bash
Executable File
14 lines
392 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# print message if an update is available
|
|
|
|
VERFILE=/usr/local/etc/ncp-version
|
|
LATEST=/var/run/.ncp-latest-version
|
|
|
|
if ncp-test-updates; then
|
|
echo -e "\nNextcloudPi \e[1m$( cat $VERFILE)\e[0m is outdated"
|
|
echo -e "update to \e[1m$( cat $LATEST )\e[0m through 'ncp-config' or type 'sudo ncp-update'"
|
|
else
|
|
echo -e "\nNextcloudPi \e[1m$( cat $VERFILE)\e[0m is up to date"
|
|
fi
|