diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2022-04-08 16:45:50 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2022-04-08 16:45:50 +0200 |
| commit | 63c2829159e255c1a82d55c6cce961ef0b25be32 (patch) | |
| tree | 1e90f3e6fa6370949b339a8d932266748c14f187 | |
| parent | 926f38a941da5f917971e609f0c03d9b69c92535 (diff) | |
| download | scripts-63c2829159e255c1a82d55c6cce961ef0b25be32.tar.gz scripts-63c2829159e255c1a82d55c6cce961ef0b25be32.zip | |
fixed realpath usage
| -rwxr-xr-x | dmenu-filepicker | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dmenu-filepicker b/dmenu-filepicker index 547f2b5..7a3da9f 100755 --- a/dmenu-filepicker +++ b/dmenu-filepicker | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | menu=dmenu | 7 | menu=dmenu |
| 8 | menuopts="-i -l 15" | 8 | menuopts="-i -l 15" |
| 9 | 9 | ||
| 10 | fullpath=$(realpath ${@:-$(pwd)}) | 10 | fullpath=$(realpath ${@:-"$(pwd)"}) |
| 11 | 11 | ||
| 12 | while true; do | 12 | while true; do |
| 13 | if [ "$sel" = "." ]; then | 13 | if [ "$sel" = "." ]; then |
