-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix compatibility with Windows (#285)
Fix compatibility with Windows (Powershell)
- Loading branch information
Showing
14 changed files
with
215 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* Copyright (c) 2023, salesforce.com, inc. | ||
* All rights reserved. | ||
* Licensed under the BSD 3-Clause license. | ||
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause | ||
*/ | ||
import * as os from 'os'; | ||
import { spawn } from 'child_process'; | ||
|
||
let command = ''; | ||
let shellOptions = {}; | ||
|
||
switch (os.platform()) { | ||
case 'win32': | ||
command = 'Remove-Item -Force .oclif.manifest.json; yarn run prepack; husky install'; | ||
shellOptions = { shell : 'powershell.exe' }; | ||
break; | ||
default: | ||
command = 'rm -f .oclif.manifest.json && yarn run prepack && husky install'; | ||
shellOptions = { shell : '/bin/sh' }; | ||
break; | ||
} | ||
|
||
const child = spawn(command, shellOptions); | ||
|
||
child.stderr.on('data', (data) => { | ||
// eslint-disable-next-line no-console | ||
process.stderr.write(String(data)); | ||
}); | ||
|
||
child.stdout.on('data', (data) => { | ||
// eslint-disable-next-line no-console | ||
process.stdout.write(String(data)); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.