hunter-harness 0.2.22 → 0.2.24
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/dist/bin.js +4 -0
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -5978,6 +5978,10 @@ async function runRefresh(options, dependencies) {
|
|
|
5978
5978
|
}
|
|
5979
5979
|
}
|
|
5980
5980
|
}
|
|
5981
|
+
if (options.forceManaged === true && !dryRun && options.yes !== true && options.confirmed !== true) {
|
|
5982
|
+
dependencies.stderr("FORCE_MANAGED_REQUIRES_CONFIRM: --force-managed requires --yes or --confirmed\n");
|
|
5983
|
+
return 2;
|
|
5984
|
+
}
|
|
5981
5985
|
try {
|
|
5982
5986
|
const result = await refreshProject({
|
|
5983
5987
|
projectRoot: dependencies.cwd,
|