@oclif/plugin-update 4.1.1 → 4.1.2

Sign up to get free protection for your applications and to get access to all the features.
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.1/src/commands/update.ts)_
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;
@@ -87,5 +87,5 @@
87
87
  ]
88
88
  }
89
89
  },
90
- "version": "4.1.1"
90
+ "version": "4.1.2"
91
91
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oclif/plugin-update",
3
- "version": "4.1.1",
3
+ "version": "4.1.2",
4
4
  "author": "Salesforce",
5
5
  "bugs": "https://github.com/oclif/plugin-update/issues",
6
6
  "dependencies": {