1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/testing/git-flow/fix-busybox-readlink.patch
2020-04-03 07:58:57 +00:00

11 lines
305 B
Diff

--- old/git-flow
+++ new/git-flow
@@ -46,7 +46,7 @@
# git-flow file is a symbolic link
case $(uname -s) in
Linux)
- export GITFLOW_DIR=$(dirname "$(readlink -e "$0")")
+ export GITFLOW_DIR=$(dirname "$(readlink -f "$0")")
;;
FreeBSD|OpenBSD|NetBSD)
export FLAGS_GETOPT_CMD='/usr/local/bin/getopt'