@leverege/build-tools 2.18.2-beta.1 → 2.18.3-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.18.2-beta.1",
3
+ "version": "2.18.3-beta.1",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -56,10 +56,13 @@ initialize_gcloud() {
56
56
  gcloud --quiet config set compute/zone ${GOOGLE_COMPUTE_ZONE}
57
57
  }
58
58
 
59
+ echo "***DUMPING ENVIRONMENT FROM DECRYPT-SECRETS BITBUCKET_CI=[$BITBUCKET_CI]"
60
+ env | sort
61
+
59
62
  # If this is running from a BitBucket Pipeline then it is assumed that our
60
63
  # custom image from the pipeline-image is executing which already has the
61
64
  # Google SDK + gcloud installed - so just use it.
62
- if [ "$BITBUCKETCI" == "true" ];
65
+ if [ "$BITBUCKET_CI" == "true" ];
63
66
  then
64
67
  printf " GCLOUD_PROJECT [$GCLOUD_PROJECT]\n"
65
68
  printf " GCLOUD_COMPUTE_ZONE [$GCLOUD_COMPUTE_ZONE]\n"
package/src/dockreate CHANGED
@@ -46,7 +46,7 @@ pluginFile="Dockerfile.plugin"
46
46
  cleanup() {
47
47
  [ ! -z "$DOCKER_SKIP_CLEANUP" ] && printf "\nSkipping clean up\n\n" && exit 1
48
48
  printf "\nCleaning up and exiting...\n\n"
49
- rm -rf ./workspace $SSHDIR .npmrc
49
+ rm -rf ./workspace ./scripts $SSHDIR .npmrc
50
50
  exit 0
51
51
  }
52
52
  trap cleanup INT