diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-09-05 19:13:31 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-09-05 19:13:31 +0300 |
commit | 45bc1eec2c935b222c88b35257c9264f8bc62241 (patch) | |
tree | a2d5189607e0249b29bf0b229cf3674e3fbdf1e8 /dotfiles/.local/bin/exremote | |
parent | 7a8b4eec79173a54673e44ffcee99f8176322539 (diff) | |
download | swayrice-45bc1eec2c935b222c88b35257c9264f8bc62241.tar.gz swayrice-45bc1eec2c935b222c88b35257c9264f8bc62241.zip |
fix exremote script
Diffstat (limited to 'dotfiles/.local/bin/exremote')
-rwxr-xr-x | dotfiles/.local/bin/exremote | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/.local/bin/exremote b/dotfiles/.local/bin/exremote index a6bbbbb..8006d8c 100755 --- a/dotfiles/.local/bin/exremote +++ b/dotfiles/.local/bin/exremote @@ -2,7 +2,7 @@ # Helper script to execute commands on remote host -[ -n "$1" ] || (echo "Specify command to run" && exit 0) +[ -n "$1" ] || { echo "Specify command to run" && exit 0; } host=$(cat $HOME/.config/exremote/host) |