aboutsummaryrefslogtreecommitdiff
path: root/files/.zsh/rc/S50_functions
diff options
context:
space:
mode:
authorAnton Bobov <anton@bobov.name>2022-01-30 21:06:59 +0500
committerAnton Bobov <anton@bobov.name>2022-01-30 21:06:59 +0500
commit32e106906599e0cb12d3ee185d9d68302978dba5 (patch)
treeb52c60b4beb01e3fe971d956a91b0a76a4424218 /files/.zsh/rc/S50_functions
parentdc175fc72cfd96f51db450a268ba21c67d4b37d7 (diff)
Updates.
Diffstat (limited to 'files/.zsh/rc/S50_functions')
-rw-r--r--files/.zsh/rc/S50_functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/.zsh/rc/S50_functions b/files/.zsh/rc/S50_functions
index eb183be..9ce889b 100644
--- a/files/.zsh/rc/S50_functions
+++ b/files/.zsh/rc/S50_functions
@@ -40,7 +40,7 @@ open() {
retry() {
for i in $(seq 5) ; do
- $* && break || sleep 5
+ "$@" && break || sleep 5
done
}