diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-04-23 17:53:48 +0200 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2023-04-23 17:53:48 +0200 |
commit | 9f64e3193206caf82bc9b6cd1fcb014209e7e1b9 (patch) | |
tree | 7172da32ae67c16c5aa6995c596085d1d527f4ef /stowdots | |
parent | 953895bbf19a6a6d63a99c21bee14fd45bb70c7d (diff) |
add support for path with spaces
Diffstat (limited to 'stowdots')
-rwxr-xr-x | stowdots | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,8 +18,8 @@ else read MACH fi -ln -sf "$(realpath $0)" $HOME/bin/ -cd "$(realpath $0 | xargs dirname)" || exit 1 +ln -sf "$(realpath "$0")" $HOME/bin/ +cd "$(dirname "$(realpath "$0")")" || exit 1 case "$MACH" in "desktop" | "d" | "laptop" | "l") mkdir -p "$HOME/bin" |