Skip to content

Commit 9ee8f5a

Browse files
committed
Check remove subcommand
1 parent 3e250cb commit 9ee8f5a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

extensions/bundle/main.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ if (
6969
!(
7070
"install".startsWith(Deno.args[0]) ||
7171
"update".startsWith(Deno.args[0]) ||
72+
"remove".startsWith(Deno.args[0]) ||
7273
"add".startsWith(Deno.args[0])
7374
)
7475
) {
@@ -95,7 +96,7 @@ await packageLockBackup.backup();
9596
const manifestBackup = new FileBackup(root + "/Gemfile");
9697
await manifestBackup.backup();
9798

98-
// Analyze new dependencies with phylum before install/update.
99+
// Analyze new dependencies with phylum.
99100
try {
100101
await checkDryRun(Deno.args[0], Deno.args.slice(1));
101102
} catch (e) {

0 commit comments

Comments
 (0)