Skip to content

Commit

Permalink
Merge pull request #1355 from tangxinfa/fix-curl--progress
Browse files Browse the repository at this point in the history
fix: failed to download rtags with curl.
  • Loading branch information
casch-at authored Dec 11, 2019
2 parents 31bff9a + 74d884d commit 1c142e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rtags.el
Original file line number Diff line number Diff line change
Expand Up @@ -5401,7 +5401,7 @@ the user enter missing field manually."
(insert "#!/bin/bash -x\n"
(format "FILE=\"rtags-%s.tar.bz2\"\n" rtags-package-version)
(format "URL=\"https://github.com/Andersbakken/rtags/releases/download/v%s/$FILE\"\n" rtags-package-version)
"ARGS=\"--progress -L -o $FILE\"\n"
"ARGS=\"-L -o $FILE\"\n"
"CMAKEARGS=" (combine-and-quote-strings (append (and rtags-install-cmake-args (list rtags-install-cmake-args))
(if (listp cmakeargs) cmakeargs (list cmakeargs)))) "\n"
"[ -e \"$FILE\" ] && ARGS=\"$ARGS -C -\"\n"
Expand Down

0 comments on commit 1c142e4

Please sign in to comment.