forked from phobal/ivideo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed postinstall script for windows (#1367)
* Initial cross platform postinstall script fix * Fixed cwd for postinstall script * Attempt fix for cross-platform test path * Cleaned up RunScripts
- Loading branch information
Showing
4 changed files
with
21 additions
and
8 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,14 @@ | ||
// @flow | ||
import path from 'path'; | ||
import { execSync } from 'child_process'; | ||
|
||
const electronRebuildCmd = | ||
'../node_modules/.bin/electron-rebuild --parallel --force --types prod,dev,optional --module-dir .'; | ||
|
||
const cmd = process.platform === 'win32' | ||
? electronRebuildCmd.replace(/\//g, '\\') | ||
: electronRebuildCmd; | ||
|
||
execSync(cmd, { | ||
cwd: path.join(__dirname, '..', '..', 'app') | ||
}); |
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