🚚 Rename patcher-installer to patch-installer
This commit is contained in:
parent
69759e5709
commit
f074739579
4 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
"name": "patcher",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"start": "rm -rf dist && tsc && cd ../patcher-installer && ./build.sh && cd ../patcher && mkdir dist/lib && cp ../patcher-installer/patcher-installer dist/lib",
|
||||
"start": "rm -rf dist && tsc && cd ../patch-installer && ./build.sh && cd ../patcher && mkdir dist/lib && cp ../patch-installer/patch-installer dist/lib",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
@ -6,8 +6,8 @@ import getUrlContents from '../cdn/getUrlContents';
|
|||
import { Product } from '../interfaces/ISettings';
|
||||
import { ISsnFileEntry, SsnDiffType } from '../interfaces/ISsnFileEntry';
|
||||
import getSolidpkg from './getSolidpkg';
|
||||
import launch from './patcher-installer/launch';
|
||||
import taskManager from './patcher-installer/taskManager';
|
||||
import launch from './installation/launch';
|
||||
import taskManager from './installation/taskManager';
|
||||
import readSsnFile from './reader/readSsnFile';
|
||||
import verifyPatch from './verify/verifyPatch';
|
||||
import verifyProductName from './verify/verifyProductName';
|
||||
|
|
|
@ -2,7 +2,7 @@ import * as childProcess from 'child_process';
|
|||
import * as fs from 'fs';
|
||||
import * as path from 'path';
|
||||
|
||||
const processPath = path.join(__dirname, '../../lib/patcher-installer');
|
||||
const processPath = path.join(__dirname, '../../lib/patch-installer');
|
||||
|
||||
export default function launchProcess(
|
||||
diskFile: string,
|
Loading…
Reference in a new issue