@oclif/plugin-update 4.1.1 → 4.1.2
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/README.md +1 -1
- package/dist/update.js +5 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -56,6 +56,6 @@ EXAMPLES
|
|
|
56
56
|
$ oclif-example update --available
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
-
_See code: [src/commands/update.ts](https://github.com/oclif/plugin-update/blob/4.1.
|
|
59
|
+
_See code: [src/commands/update.ts](https://github.com/oclif/plugin-update/blob/4.1.2/src/commands/update.ts)_
|
|
60
60
|
|
|
61
61
|
<!-- commandsstop -->
|
package/dist/update.js
CHANGED
|
@@ -224,8 +224,12 @@ const mtime = async (f) => (await stat(f)).mtime;
|
|
|
224
224
|
const notUpdatable = (config) => {
|
|
225
225
|
if (!config.binPath) {
|
|
226
226
|
const instructions = config.scopedEnvVar('UPDATE_INSTRUCTIONS');
|
|
227
|
-
if (instructions)
|
|
227
|
+
if (instructions) {
|
|
228
228
|
ux.warn(instructions);
|
|
229
|
+
// once the spinner stops, it'll eat this blank line
|
|
230
|
+
// https://github.com/oclif/core/issues/799
|
|
231
|
+
ux.log();
|
|
232
|
+
}
|
|
229
233
|
return true;
|
|
230
234
|
}
|
|
231
235
|
return false;
|
package/oclif.manifest.json
CHANGED