diff options
author | 0neGal <mail@0negal.com> | 2023-07-16 18:40:32 +0200 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2023-07-16 18:40:32 +0200 |
commit | fb177137413d9fa8eb12364a76dd74b0b4bfc1e6 (patch) | |
tree | 7df17f21c0b177dba7a284e83b8422b5da1354e4 /src | |
parent | d61a66893f6212f18da1eba3d874cf23594fa75e (diff) | |
download | Viper-fb177137413d9fa8eb12364a76dd74b0b4bfc1e6.tar.gz Viper-fb177137413d9fa8eb12364a76dd74b0b4bfc1e6.zip |
fixed packages without plugins not installing
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/packages.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/packages.js b/src/modules/packages.js index 9e5b08f..f515dde 100644 --- a/src/modules/packages.js +++ b/src/modules/packages.js @@ -160,6 +160,7 @@ packages.install = async (url, author, package_name, version) => { let verification = packages.verify(package_path); switch(verification) { + case true: break; case "has-plugins": // if the package has plugins, then we want to prompt the // user, and make absolutely certain that they do want to |