diff --git a/github-deploy/bin/deployment-get-environment b/github-deploy/bin/deployment-get-environment index a6cfd98..4b2c44b 100755 --- a/github-deploy/bin/deployment-get-environment +++ b/github-deploy/bin/deployment-get-environment @@ -2,4 +2,4 @@ BASEDIR=$(dirname "$0") -cmd "${GITHUB_EVENT_PATH}" | "${BASEDIR}"/JSON.sh | grep '\["deployment","environment"]' | cut -f2 | sed -e 's/^"//' -e 's/"$//' \ No newline at end of file +cat "${GITHUB_EVENT_PATH}" | "${BASEDIR}"/JSON.sh | grep '\["deployment","environment"]' | cut -f2 | sed -e 's/^"//' -e 's/"$//' \ No newline at end of file diff --git a/github-deploy/bin/deployment-get-id b/github-deploy/bin/deployment-get-id index a070aa0..532a706 100755 --- a/github-deploy/bin/deployment-get-id +++ b/github-deploy/bin/deployment-get-id @@ -2,4 +2,4 @@ BASEDIR=$(dirname "$0") -cmd "${GITHUB_EVENT_PATH}" | "${BASEDIR}"/JSON.sh | grep '\["deployment","id"]' | cut -f2 \ No newline at end of file +cat "${GITHUB_EVENT_PATH}" | "${BASEDIR}"/JSON.sh | grep '\["deployment","id"]' | cut -f2 \ No newline at end of file