This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Require: run from a Nextcloud root dir | |
if [ ! -f lib/versioncheck.php ]; then | |
echo "Enter the Nextcloud root dir first" > /dev/stderr | |
exit 255; | |
fi | |
# Test general php bin first | |
if php lib/versioncheck.php 1>/dev/null ; then |
OlderNewer