修复无法覆盖安装依赖

This commit is contained in:
whyour
2021-10-31 17:34:19 +08:00
parent 2b61204233
commit 021d89379a
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -36,13 +36,13 @@ export enum DependenceTypes {
}
export enum InstallDependenceCommandTypes {
'npm i -g',
'npm i -g --force',
'pip3 install',
'apk add --no-cache',
'apk add --no-cache -f',
}
export enum unInstallDependenceCommandTypes {
'npm uninstall -g',
'npm uninstall -g --force',
'pip3 uninstall -y',
'apk del',
'apk del -f',
}