-
Notifications
You must be signed in to change notification settings - Fork 527
Permit to use a single symlink as installation method #42
Permit to use a single symlink as installation method #42
Conversation
This patch permit to create a link in $PATH pointing to sources. * git-flow (GITFLOW_DIR): dereference $0 to handle symlink.
Going to reverse this as Mac's can't handle |
Sorry, I was not aware of the limitations of proprietary softwares. The idea behind using
Some updating the software only needs to pull the git repository, testing new functionality only needs to switch branches. If the problem causing the revert is just that the if type -p readlink > /dev/null
SELF=$(readlink -e "$0")
else
SELF="$0"
fi
export GITFLOW_DIR=$(dirname "$(echo "$SELF" | sed -e 's,\\,/,g')") |
It's not so much that its not available, but that the arguments differ slightly. I suspect this may be another of those GNU vs BSD version issues. An extract from the man page:
|
There's a package |
Well, in our case, the |
The |
OK, it's tomorrow :) Just pushed version 1.4.0-dev.22 which hopefully resolves this issue for the different platforms. I created issue #48 to help test this for all different operating systems. |
This patch permit to create a link in $PATH pointing to sources.