verbose mode now passes verbose flag to curl
This commit is contained in:
parent
9bfc3da411
commit
24798287b2
|
@ -26,7 +26,9 @@
|
|||
(if (verbose)
|
||||
(current-output-port)
|
||||
(open-output-nowhere))])
|
||||
(void (system* (path->string post) coverage-file))))
|
||||
(void (system* (path->string post)
|
||||
coverage-file
|
||||
(if (vebose) "-v" "")))))
|
||||
|
||||
;; Maps service name to the environment variable that indicates that the service is to be used.
|
||||
(define BUILD-TYPES (hash "travis-ci" "TRAVIS_JOB_ID"))
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
file=$1
|
||||
verbose=$2
|
||||
|
||||
curl -v --include --form json_file=@"$file" "https://coveralls.io/api/v1/jobs"
|
||||
curl $verbose --include --form json_file=@"$file" "https://coveralls.io/api/v1/jobs"
|
||||
|
|
Loading…
Reference in New Issue
Block a user