@leverege/build-tools 2.93.0-beta.8 → 2.93.0-beta.9

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leverege/build-tools",
3
- "version": "2.93.0-beta.8",
3
+ "version": "2.93.0-beta.9",
4
4
  "description": "A collection of build / support tools for Leverege developers",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -52,6 +52,8 @@ class GenericArtifactPusher extends ArtifactPusher {
52
52
  --version ${this.artifact.gcp_artifact_registry_package_version} \
53
53
  --filter="name:${this.artifact.destination_path}" \
54
54
  --format="json"`
55
+
56
+ console.log( 'Command:', command.replace( /\s+/g, ' ' ).trim() )
55
57
 
56
58
  try {
57
59
  const { execSync } = await import( 'child_process' )
@@ -102,6 +104,8 @@ class GenericArtifactPusher extends ArtifactPusher {
102
104
  --package=${this.artifact.gcp_artifact_registry_package_name} \
103
105
  --version=${this.artifact.gcp_artifact_registry_package_version}`
104
106
 
107
+ console.log( 'Command:', command.replace( /\s+/g, ' ' ).trim() )
108
+
105
109
  const isDirectory = fs.statSync( this.artifact.source_path ).isDirectory()
106
110
  if ( isDirectory ) {
107
111
  command += ` --source-directory=${this.artifact.source_path}`