fly-secrets-diff 0.1.3 → 0.1.4
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/index.mjs +3 -4
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -292,6 +292,9 @@ export async function printDiff(args) {
|
|
|
292
292
|
fly secrets set --app=${args.app} \\
|
|
293
293
|
${missing}`
|
|
294
294
|
)
|
|
295
|
+
if (!args.reveal) {
|
|
296
|
+
console.log('\nTip: run with --reveal to show the secrets')
|
|
297
|
+
}
|
|
295
298
|
}
|
|
296
299
|
|
|
297
300
|
if (unusedArr.length > 0) {
|
|
@@ -300,10 +303,6 @@ export async function printDiff(args) {
|
|
|
300
303
|
fly secrets unset --app=${args.app} \\
|
|
301
304
|
${unusedStr}`
|
|
302
305
|
)
|
|
303
|
-
|
|
304
|
-
if (!args.reveal) {
|
|
305
|
-
console.log('\nTip: run with --reveal to show the secrets')
|
|
306
|
-
}
|
|
307
306
|
}
|
|
308
307
|
log.info()
|
|
309
308
|
}
|