@sw-tsdk/connector 3.0.0 → 3.1.0

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.
@@ -17,7 +17,7 @@ RUN pip install -r requirements.txt
17
17
  FROM ${RUNNER_IMAGE_NAME} AS runtime-image
18
18
  ARG ASSET_KEYS
19
19
  ENV ASSET_KEYS=$ASSET_KEYS
20
- RUN if [[ -z "DEBUG" ]] ; then echo 'DEBUG not enabled' ; else echo 'DEBUG is enabled'; pip install debugpy ; fi
20
+ RUN if [ -z "$DEBUG" ] ; then echo 'DEBUG not enabled' ; else echo 'DEBUG is enabled'; pip install debugpy ; fi
21
21
  COPY runner.* /scripts/
22
22
 
23
23
  RUN if [ $(stat -c %s "/scripts/runner.txt") -ne 0 ]; then apt-get update && xargs -a /scripts/runner.txt apt-get install -y --no-install-recommends; fi
package/package.json CHANGED
@@ -9,9 +9,9 @@
9
9
  "@oclif/core": "2.8.5",
10
10
  "@oclif/plugin-help": "5.2.9",
11
11
  "@oclif/plugin-plugins": "3.1.2",
12
- "@sw-tsdk/common": "^3.0.0",
13
- "@sw-tsdk/core": "^3.0.0",
14
- "@sw-tsdk/docker": "^3.0.0",
12
+ "@sw-tsdk/common": "^3.1.0",
13
+ "@sw-tsdk/core": "^3.1.0",
14
+ "@sw-tsdk/docker": "^3.1.0",
15
15
  "@swimlane/connector-interfaces": "1.11.0",
16
16
  "@swimlane/cosign": "1.4.1",
17
17
  "archiver": "5.3.1",
@@ -65,6 +65,6 @@
65
65
  "test": "jest --passWithNoTests"
66
66
  },
67
67
  "types": "lib/index.d.ts",
68
- "version": "3.0.0",
69
- "gitHead": "c9aa3f5561e68b54da961f9af3384291082d12d1"
68
+ "version": "3.1.0",
69
+ "gitHead": "d271517ce8060cdc6a1a1e7def2161e8b06b53bf"
70
70
  }