diff options
author | M.Gergo | 2021-06-03 14:20:05 +0200 |
---|---|---|
committer | M.Gergo | 2021-06-03 14:20:05 +0200 |
commit | fd57851114a515c1a35c29e733181afb7a4ee6ca (patch) | |
tree | 25d13a7257ea00537defd17792e3f96666811e8b /mayor-orig/mayor-base/bin | |
parent | c5e0aa198eaf5a01e89700cd484ca6ea86228811 (diff) | |
download | mayor-fd57851114a515c1a35c29e733181afb7a4ee6ca.tar.gz mayor-fd57851114a515c1a35c29e733181afb7a4ee6ca.zip |
Rev: 4789rev4789
Diffstat (limited to 'mayor-orig/mayor-base/bin')
-rw-r--r-- | mayor-orig/mayor-base/bin/update.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mayor-orig/mayor-base/bin/update.sh b/mayor-orig/mayor-base/bin/update.sh index 507347d4..30429aaf 100644 --- a/mayor-orig/mayor-base/bin/update.sh +++ b/mayor-orig/mayor-base/bin/update.sh @@ -163,9 +163,9 @@ if [ "$EXECONLY" != "1" ]; then # Az md5sum állomány PHP_VERSION=`php -r "echo phpversion();"` if [ -z $VERSION ]; then - wget --output-file=md5sum "http://www.mayor.hu/download/md5sum?php_version=${PHP_VERSION}" + wget -O md5sum "http://www.mayor.hu/download/md5sum?php_version=${PHP_VERSION}" else - wget --output-file=md5sum "http://www.mayor.hu/download/$VERSION/md5sum?php_version=${PHP_VERSION}" + wget -O md5sum "http://www.mayor.hu/download/$VERSION/md5sum?php_version=${PHP_VERSION}" if [[ ! $HTTP_SERVER =~ .*$VERSION.* ]]; then HTTP_SERVER="$HTTP_SERVER/$VERSION"; fi fi if [ $? != 0 ]; then exit 5; fi |