@toa.io/operations 1.0.0-alpha.75 → 1.0.0-alpha.79
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": "@toa.io/operations",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.79",
|
|
4
4
|
"description": "Toa Deployment",
|
|
5
5
|
"homepage": "https://toa.io",
|
|
6
6
|
"author": {
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@toa.io/filesystem": "1.0.0-alpha.63",
|
|
31
31
|
"@toa.io/generic": "1.0.0-alpha.63",
|
|
32
|
-
"@toa.io/norm": "1.0.0-alpha.
|
|
32
|
+
"@toa.io/norm": "1.0.0-alpha.79",
|
|
33
33
|
"@toa.io/yaml": "1.0.0-alpha.63",
|
|
34
34
|
"execa": "5.1.1",
|
|
35
35
|
"fs-extra": "11.1.1"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "69f3f10212861886d4123786b695de1d456d9a3c"
|
|
38
38
|
}
|
|
@@ -115,11 +115,13 @@ class Registry {
|
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
async exists (tag) {
|
|
118
|
-
const args = ['inspect', tag]
|
|
118
|
+
const args = ['manifest', 'inspect', tag]
|
|
119
119
|
|
|
120
120
|
try {
|
|
121
121
|
await this.#process.execute('docker', args, { silently: true })
|
|
122
|
-
} catch {
|
|
122
|
+
} catch (error) {
|
|
123
|
+
console.log(error.message)
|
|
124
|
+
|
|
123
125
|
return false
|
|
124
126
|
}
|
|
125
127
|
|