@salesforce/cli 2.2.5-dev.0 → 2.2.5

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/bin/run CHANGED
@@ -17,16 +17,8 @@ require('../dist/flags').preprocessCliFlags(process);
17
17
  const cli = require('../dist/cli');
18
18
  const pjson = require('../package.json');
19
19
 
20
- // OVERRIDES gets replaced with particular values for binary builds,
21
- // but simply use defaults for npm and local invocations
22
- const overrides = {
23
- /* @OVERRIDES@ */
24
- };
25
- const version = overrides.version || pjson.version;
26
- const channel = overrides.channel || 'stable';
27
-
28
20
  cli
29
- .create(version, channel)
21
+ .create(pjson.version, 'stable')
30
22
  .run()
31
23
  .then(function () {
32
24
  require('@oclif/core/flush')();