diff --git a/Makefile b/Makefile index edbdf19..d1c5b57 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,4 @@ GO15VENDOREXPERIMENT=1 -GOOGLE_PROJECT=pantheon-internal APP=baryon all: deps test build diff --git a/README.md b/README.md index 595da97..82f309e 100644 --- a/README.md +++ b/README.md @@ -56,9 +56,3 @@ Application Options: Help Options: -h, --help Show this help message ``` - -## Todo: - * Reverse dependency lookup - * Parse dependency info from tag annotations (don't fetch metadata from a repo) - * Policy Interface for handling different sources and merge strategy - * Configurable max versions per cookbook diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..a63da0b --- /dev/null +++ b/TODO.md @@ -0,0 +1,6 @@ +## Todo: + * Reverse dependency lookup + * Parse dependency info from tag annotations (don't fetch metadata from a repo) + * Policy Interface for handling different sources and merge strategy + * Configurable max versions per cookbook + * Versioning & autotag diff --git a/deploy/gce/gcloud-setup.sh b/deploy/gce/gcloud-setup.sh index 75742af..be65e8e 100644 --- a/deploy/gce/gcloud-setup.sh +++ b/deploy/gce/gcloud-setup.sh @@ -9,7 +9,7 @@ # CLOUDSDK_COMPUTE_ZONE # The compute zone container the GKE container cluster to deploy into # CLUSTER_ID # ID of the GKE container cluster to deploy into -set -ex +set -e if [ "$CIRCLECI" != "true" ]; then echo "This script is only intended to run on Circle-CI." diff --git a/deploy/install-go.sh b/deploy/install-go.sh index 538ac25..49ed68e 100644 --- a/deploy/install-go.sh +++ b/deploy/install-go.sh @@ -1,6 +1,6 @@ #!/bin/bash -set -xe +set -e if [ -d "$HOME/go1.5" ] ; then echo "go 1.5 installed skipping" diff --git a/deploy/release.sh b/deploy/release.sh index f8b5131..83fe8b7 100644 --- a/deploy/release.sh +++ b/deploy/release.sh @@ -1,6 +1,6 @@ #!/bin/bash -set -xe +set -e # ensure we have autotag if [ ! -d "$HOME/bin" ]; then