修复无法覆盖安装依赖

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

View File

@ -8,7 +8,7 @@
<div align="center">
Python/JavaScript/Shell/Typescript 定时任务管理
A timed task management panel that supports typescript, javaScript, python3, and shell.支持python3、javaScript、shell、typescript 的定时任务管理面板)
[![docker version][docker-version-image]][docker-version-url] [![docker pulls][docker-pulls-image]][docker-pulls-url] [![docker stars][docker-stars-image]][docker-stars-url] [![docker image size][docker-image-size-image]][docker-image-size-url] [![donate][donate-image]][donate-url]

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',
}