diff options
author | Simon Rettberg | 2019-05-28 11:55:45 +0200 |
---|---|---|
committer | Simon Rettberg | 2019-05-28 11:55:45 +0200 |
commit | 486e817f199e4325e086b779d1137a0f220e22fc (patch) | |
tree | 27b75bcabd397f35f0d66f35d2e13d2710f333e5 | |
parent | Add String and XML helpers (diff) | |
download | slx-tools-486e817f199e4325e086b779d1137a0f220e22fc.tar.gz slx-tools-486e817f199e4325e086b779d1137a0f220e22fc.tar.xz slx-tools-486e817f199e4325e086b779d1137a0f220e22fc.zip |
Fix typo
-rw-r--r-- | modules/download.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/download.inc b/modules/download.inc index bbe4aae..5191922 100644 --- a/modules/download.inc +++ b/modules/download.inc @@ -4,7 +4,7 @@ download() { curl --location --max-redirs 5 --max-time 7 --connect-timeout 2 "$@" } -ownload_retry() { +download_retry() { download --retry 3 --retry-max-time 12 "$@" } |