diff options
author | Jonas Wielicki <j.wielicki@sotecware.net> | 2018-07-24 22:02:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-24 22:02:06 +0200 |
commit | a6de94496a7a808afcde924c813d6ebc606b35e3 (patch) | |
tree | de01323dac2e71fc38a1b070e7bdd8163e6592f7 | |
parent | 8c6f5e195e9c67962dc21dde006fb77bfb91e0b6 (diff) | |
parent | be6f9d819ac7d25f164062fc886de1f10bc99857 (diff) |
Merge pull request #5 from weiss/dir-with-spaces
Cope with space characters in path
-rwxr-xr-x | echoz.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ #!/bin/bash set -euf -thisdir="$(dirname $0)" +thisdir="$(dirname "$0")" pipename="${XDG_RUNTIME_DIR:-/tmp}/echoz-$$.pipe" jid="$1" password="$2" |