diff options
| author | Thomas Schmucker <ts@its1.de> | 2026-07-08 16:10:55 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2026-07-08 16:10:55 +0200 |
| commit | 4515cca66dafb98b5d22f5774510b0900c590201 (patch) | |
| tree | f4ad9f38bbe777784b85dce2c98e86c41098cbfa | |
| parent | 0ca0af2deea5976671fc6356e612c5bdbb40f256 (diff) | |
| download | dotfiles-4515cca66dafb98b5d22f5774510b0900c590201.tar.gz dotfiles-4515cca66dafb98b5d22f5774510b0900c590201.tar.bz2 dotfiles-4515cca66dafb98b5d22f5774510b0900c590201.zip | |
bootstrap: benutze f-flag bei curl für eine bessere Fehlerbehandlung
| -rwxr-xr-x | bootstrap-nvim-dict.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap-nvim-dict.sh b/bootstrap-nvim-dict.sh index 9ffde0f..fa29728 100755 --- a/bootstrap-nvim-dict.sh +++ b/bootstrap-nvim-dict.sh | |||
| @@ -19,7 +19,7 @@ download() { | |||
| 19 | if command -v wget >/dev/null 2>&1; then | 19 | if command -v wget >/dev/null 2>&1; then |
| 20 | wget -q --show-progress "$url" | 20 | wget -q --show-progress "$url" |
| 21 | elif command -v curl >/dev/null 2>&1; then | 21 | elif command -v curl >/dev/null 2>&1; then |
| 22 | curl -LO "$url" | 22 | curl -fLO "$url" |
| 23 | else | 23 | else |
| 24 | echo "ERROR: neither wget nor curl found" | 24 | echo "ERROR: neither wget nor curl found" |
| 25 | exit 1 | 25 | exit 1 |
