X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=path_add-function;h=f03451abb1f4237e2438e0fb0c4e54085bcad7bc;hb=32fb94de4f6b8e30ee53486f87721e73ed4eff50;hp=9537fe73076a308e22000c53b95902f00f7f7fbb;hpb=ede2c5bdb0d26e609317ee47d691aa6673d3ac1f;p=distro-setup diff --git a/path_add-function b/path_add-function index 9537fe7..f03451a 100644 --- a/path_add-function +++ b/path_add-function @@ -21,7 +21,7 @@ path_add() { local help="usage: path_add [options] PATH --help: print this --end: adds to end of path, which will give it lowest priority ---ifexists: add to path only if the directory exists" +--force: add to path even if directory does not exist" local found x y z ifexists end loop newpath force=false end=false @@ -67,7 +67,6 @@ path_add() { unset IFS PATH="$newpath" for x in "$@"; do - x="$(readlink -f "$x")" if $force || [ -d "$x" ]; then if [ ! "$PATH" ]; then PATH="$x"