This commit is contained in:
parent
785cb276f0
commit
75c4c947d5
1 changed files with 22 additions and 0 deletions
|
@ -0,0 +1,22 @@
|
||||||
|
### Please describe the problem.
|
||||||
|
|
||||||
|
symlinking git-annex from a unpacked tarball to the
|
||||||
|
|
||||||
|
### What steps will reproduce the problem?
|
||||||
|
|
||||||
|
symlink git-annex somewhere, call that symline
|
||||||
|
|
||||||
|
###
|
||||||
|
|
||||||
|
known fix
|
||||||
|
|
||||||
|
[[!format sh """
|
||||||
|
#!/bin/sh
|
||||||
|
GIT_ANNEX_PROGRAMPATH=$(realpath "$0")
|
||||||
|
export GIT_ANNEX_PROGRAMPATH
|
||||||
|
exec "$GIT_ANNEX_DIR/exe/git-annex" --library-path "$GIT_ANNEX_LD_LIBRARY_PATH" "$GIT_ANNEX_DIR/shimmed/git-annex/git-annex" "$@"
|
||||||
|
|
||||||
|
|
||||||
|
"""]]
|
||||||
|
|
||||||
|
the realpath call is new
|
Loading…
Reference in a new issue