From 39729afe4248189d2b423cfee451f6d1d4b48179 Mon Sep 17 00:00:00 2001 From: Luciano Silva Date: Tue, 28 Feb 2017 21:26:13 -0500 Subject: [PATCH] Remove default debug output of payload object from IN script --- README.md | 4 +--- assets/in | 2 -- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index a8da840..cdbf3ac 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Tracks the update of a single URL-addressable file. -This is a useful resource for pipeline development time, while a required artifact is temporarily available from a URL-addressable location, until it is moved to a more robust file management repository such as [git](https://github.com/concourse/git-resource) or [S3](https://github.com/concourse/s3-resource). +This is a useful resource for pipeline development time, while a required artifact is available only from a URL-addressable location and until it is moved to a file management repository such as [git](https://github.com/concourse/git-resource) or [S3](https://github.com/concourse/s3-resource). ## Source Configuration @@ -56,5 +56,3 @@ Downloads the latest version of the file issuing a `curl` command under-the-cove ### `out`: Not supported. - -Write actions are not supported by this resource at this moment. diff --git a/assets/in b/assets/in index e864ecd..166392f 100755 --- a/assets/in +++ b/assets/in @@ -20,8 +20,6 @@ payload=$(mktemp $TMPDIR/concoure-curl-resource-request.XXXXXX) cat > $payload <&0 -cat $payload - url=$(jq -r '.source.url // ""' < $payload) filename=$(jq -r '.source.filename // ""' < $payload) skip_ssl_verification=$(jq -r '.source.skip_ssl_verification // ""' < $payload)