branch develop updated (5dbb269 -> 7d0216e)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository mum. See http://git.chorem.org/mum.git from 5dbb269 change licence from GPL to AGPL new 7d0216e replace command realpath with readlink -m The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 7d0216ea01ef1e7e134dbf191680b5c5a6e0a15e Author: Benjamin POUSSIN <poussin@codelutin.com> Date: Thu Jul 9 16:30:59 2015 +0200 replace command realpath with readlink -m Summary of changes: scripts/mum-env.sh | 4 ++-- scripts/mum-in-venv.sh | 2 +- scripts/mum-install-venv.sh | 2 +- scripts/mum.sh | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository mum. See http://git.chorem.org/mum.git commit 7d0216ea01ef1e7e134dbf191680b5c5a6e0a15e Author: Benjamin POUSSIN <poussin@codelutin.com> Date: Thu Jul 9 16:30:59 2015 +0200 replace command realpath with readlink -m --- scripts/mum-env.sh | 4 ++-- scripts/mum-in-venv.sh | 2 +- scripts/mum-install-venv.sh | 2 +- scripts/mum.sh | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/mum-env.sh b/scripts/mum-env.sh index 4442159..7bf6e40 100755 --- a/scripts/mum-env.sh +++ b/scripts/mum-env.sh @@ -2,7 +2,7 @@ if [ -z "$MUM_ENV" ]; then -SCRIPT_DIR=$(dirname $(realpath $0)) +SCRIPT_DIR=$(dirname $(readlink -m $0)) USAGE="usage $(basename $0) [config_file|config_dir]" CONF=$1 @@ -20,7 +20,7 @@ fi if [ ! -f "$MUM_DIR/$MUM_PY" ]; then if [ -f "$SCRIPT_DIR/../$MUM_PY" ]; then - MUM_DIR=$(realpath "$SCRIPT_DIR/../$MUM_PY") + MUM_DIR=$(readlink -m "$SCRIPT_DIR/..") elif [ -f /usr/lib/mum/$MUM_PY ]; then MUM_DIR=/usr/lib/mum else diff --git a/scripts/mum-in-venv.sh b/scripts/mum-in-venv.sh index 882e45c..386329d 100755 --- a/scripts/mum-in-venv.sh +++ b/scripts/mum-in-venv.sh @@ -1,6 +1,6 @@ #!/bin/bash -SCRIPT_DIR=$(dirname $(realpath $0)) +SCRIPT_DIR=$(dirname $(readlink -m $0)) cd $SCRIPT_DIR . mum-env.sh diff --git a/scripts/mum-install-venv.sh b/scripts/mum-install-venv.sh index 360e0cf..d9cd510 100755 --- a/scripts/mum-install-venv.sh +++ b/scripts/mum-install-venv.sh @@ -1,6 +1,6 @@ #!/bin/bash -SCRIPT_DIR=$(dirname $(realpath $0)) +SCRIPT_DIR=$(dirname $(readlink -m $0)) . $SCRIPT_DIR/mum-env.sh diff --git a/scripts/mum.sh b/scripts/mum.sh index 4b826fe..d281aec 100755 --- a/scripts/mum.sh +++ b/scripts/mum.sh @@ -1,6 +1,6 @@ #!/bin/sh -SCRIPT_DIR=$(dirname $(realpath $0)) +SCRIPT_DIR=$(dirname $(readlink -m $0)) . $SCRIPT_DIR/mum-env.sh -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm