@leverege/build-tools 2.52.0-beta.1 → 2.52.0-beta.2

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Docker.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.52.0-beta.1",
3
+ "version": "2.52.0-beta.2",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
package/src/Docker.mjs CHANGED
@@ -287,7 +287,7 @@ const buildContainerImage = async ( {
287
287
  const { fullName : builderName } = await getGcpAccount()
288
288
  const gcloudBuild = `time gcloud builds submit --project ${artifactProject}`
289
289
  const gcloudLogs = `--gcs-log-dir ${formCloudBuildBucketName( artifactProject )}/log`
290
- let gcloudTags = `--tag ${imageName}:${imageVersion} `
290
+ let gcloudTags = `--tag ${imageName}:${imageVersion}`
291
291
 
292
292
  if ( useCloudBuildFile ) {
293
293
  const cloudBuildFile = './docker/cloudbuild.yaml'