emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/elpa 9efe207 05/71: Make curl invocation fail more expl


From: João Távora
Subject: [elpa] externals/elpa 9efe207 05/71: Make curl invocation fail more explicitly in .travis.yml
Date: Wed, 16 Dec 2020 11:42:13 -0500 (EST)

branch: externals/elpa
commit 9efe2071aa860dd80ac3a52de2d9bba8c6fc8985
Author: Tobias Rittweiler <trittweiler@gmail.com>
Commit: Tobias Rittweiler <trittweiler@gmail.com>

    Make curl invocation fail more explicitly in .travis.yml
    
    A previous build (Build #926) failed with:
    
    ```
    $ curl -LO 
https://github.com/npostavs/emacs-travis/releases/download/bins/emacs-bin-${EMACS_VERSION}.tar.gz
    $ tar -xaf emacs-bin-${EMACS_VERSION}.tar.gz -C /
    gzip: stdin: not in gzip format
    tar: Child returned status 1
    tar: Error is not recoverable: exiting now
    ```
---
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 1644b59..47db13a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,7 +10,7 @@ env:
     - EMACS_VERSION=master
 
 install:
-  - curl -LO 
https://github.com/npostavs/emacs-travis/releases/download/bins/emacs-bin-${EMACS_VERSION}.tar.gz
+  - curl -fSLO 
https://github.com/npostavs/emacs-travis/releases/download/bins/emacs-bin-${EMACS_VERSION}.tar.gz
   - tar -xaf emacs-bin-${EMACS_VERSION}.tar.gz -C /
   # Configure $PATH: Emacs installed to /tmp/emacs
   - export PATH=/tmp/emacs/bin:${PATH}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]