summaryrefslogtreecommitdiff
path: root/bin/update.sh
diff options
context:
space:
mode:
authortill <till@php.net>2009-01-09 21:13:00 +0000
committertill <till@php.net>2009-01-09 21:13:00 +0000
commitd4847048a18b0f51107a078add14563ecadf4701 (patch)
tree0b0680bee439cc0ce2f55d995655f737bd42fc05 /bin/update.sh
parent64c52c63ad42301ece004f51c1dc6abc4c84ce97 (diff)
* let's not discriminate unix :) (= generalized paths)
* added checks so all scripts are only executable from CLI
Diffstat (limited to 'bin/update.sh')
-rwxr-xr-xbin/update.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/bin/update.sh b/bin/update.sh
index a9a917c8c..c93d92dec 100755
--- a/bin/update.sh
+++ b/bin/update.sh
@@ -1,6 +1,8 @@
-#!/usr/bin/php
+#!/usr/bin/env php
<?php
-
+if (php_sapi_name() != 'cli') {
+ die('Not on the "shell" (php-cli).');
+}
define('INSTALL_PATH', realpath(dirname(__FILE__) . '/..') . '/' );
require_once INSTALL_PATH . 'program/include/iniset.php';
@@ -112,4 +114,4 @@ else {
echo "\n";
-?> \ No newline at end of file
+?>