Replace the usage of readlink's -f option (which is only available in
GNUs coreutils) by something more sophisticated which is compatible with both, Linux and the BSDs (fixes issue 526)
This commit is contained in:
parent
dc2881ad02
commit
28f36dc7b0
@ -17,8 +17,11 @@
|
|||||||
# git$ ln -s /home/www/indefero/scripts/git-post-update post-update
|
# git$ ln -s /home/www/indefero/scripts/git-post-update post-update
|
||||||
#
|
#
|
||||||
|
|
||||||
SCRIPTDIR=$(dirname $(readlink -f $0))
|
dir=$(dirname "$0")
|
||||||
FULL_GIT_DIR=$(readlink -f $GIT_DIR)
|
res=$(cd "$dir" && /bin/pwd || "$dir")
|
||||||
|
SCRIPTDIR="$res/$(readlink $0)"
|
||||||
|
FULL_GIT_DIR=$(cd "$GIT_DIR" && /bin/pwd || "$GIT_DIR")
|
||||||
|
|
||||||
PHP_POST_UPDATE=$SCRIPTDIR/gitpostupdate.php
|
PHP_POST_UPDATE=$SCRIPTDIR/gitpostupdate.php
|
||||||
|
|
||||||
echo php $PHP_POST_UPDATE $FULL_GIT_DIR | at now > /dev/null 2>&1
|
echo php $PHP_POST_UPDATE $FULL_GIT_DIR | at now > /dev/null 2>&1
|
||||||
|
@ -18,7 +18,9 @@
|
|||||||
# www$ ln -s /home/www/indefero/scripts/svn-post-commit post-commit
|
# www$ ln -s /home/www/indefero/scripts/svn-post-commit post-commit
|
||||||
#
|
#
|
||||||
|
|
||||||
SCRIPTDIR=$(dirname $(readlink -f $0))
|
dir=$(dirname "$0")
|
||||||
|
res=$(cd "$dir" && /bin/pwd || "$dir")
|
||||||
|
SCRIPTDIR="$res/$(readlink $0)"
|
||||||
PHP_POST_COMMIT=$SCRIPTDIR/svnpostcommit.php
|
PHP_POST_COMMIT=$SCRIPTDIR/svnpostcommit.php
|
||||||
|
|
||||||
echo php $PHP_POST_COMMIT "$1" "$2" | at now > /dev/null 2>&1
|
echo php $PHP_POST_COMMIT "$1" "$2" | at now > /dev/null 2>&1
|
||||||
|
@ -18,7 +18,9 @@
|
|||||||
# www$ ln -s /home/www/indefero/scripts/svn-post-revprop-change post-revprop-change
|
# www$ ln -s /home/www/indefero/scripts/svn-post-revprop-change post-revprop-change
|
||||||
#
|
#
|
||||||
|
|
||||||
SCRIPTDIR=$(dirname $(readlink -f $0))
|
dir=$(dirname "$0")
|
||||||
|
res=$(cd "$dir" && /bin/pwd || "$dir")
|
||||||
|
SCRIPTDIR="$res/$(readlink $0)"
|
||||||
PHP_POST_REVPROP=$SCRIPTDIR/svnpostrevpropchange.php
|
PHP_POST_REVPROP=$SCRIPTDIR/svnpostrevpropchange.php
|
||||||
|
|
||||||
echo php $PHP_POST_REVPROP "$1" "$2" "$3" "$4" "$5" | at now > /dev/null 2>&1
|
echo php $PHP_POST_REVPROP "$1" "$2" "$3" "$4" "$5" | at now > /dev/null 2>&1
|
||||||
|
Loading…
Reference in New Issue
Block a user