🐛 Fix launching of ssn-installer
This commit is contained in:
parent
31d4210f0c
commit
22521238d9
2 changed files with 3 additions and 2 deletions
2
package-lock.json
generated
2
package-lock.json
generated
|
@ -15,7 +15,7 @@
|
||||||
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
|
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
|
||||||
},
|
},
|
||||||
"ssn-installer": {
|
"ssn-installer": {
|
||||||
"version": "git+https://git.jedipedia.net/swtor/ssn-installer.git#88dba8d750a88a7a11a82f77e4bacc624a426ed7",
|
"version": "git+https://git.jedipedia.net/swtor/ssn-installer.git#3ddf3645adec42dd872ebaf593f9910eee3e5046",
|
||||||
"from": "git+https://git.jedipedia.net/swtor/ssn-installer.git"
|
"from": "git+https://git.jedipedia.net/swtor/ssn-installer.git"
|
||||||
},
|
},
|
||||||
"xml-js": {
|
"xml-js": {
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
import * as childProcess from 'child_process';
|
import * as childProcess from 'child_process';
|
||||||
import * as fs from 'fs';
|
import * as fs from 'fs';
|
||||||
|
import * as path from 'path';
|
||||||
|
|
||||||
const processPath = 'ssn-installer';
|
const processPath = path.join(__dirname, '../../../node_modules/.bin/ssn-installer');
|
||||||
|
|
||||||
export default function launchProcess(
|
export default function launchProcess(
|
||||||
diskFile: string,
|
diskFile: string,
|
||||||
|
|
Loading…
Reference in a new issue