Skip to content

Commit cfe3943

Browse files
authored
fix: typo in param name in scan-deps script command call (#7)
1 parent eabe25f commit cfe3943

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scripts/scan-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if [[ -n "$SCAN_CMD" ]]; then
55
eval "$SCAN_CMD"
66
elif [[ "$PKG_MANAGER" == "npm" ]]; then
77
echo "Running npm audit with high audit level omitting dev dependencies"
8-
npm audit --aduit-level=high --omit=dev
8+
npm audit --audit-level=high --omit=dev
99
elif [[ "$PKG_MANAGER" == "pnpm" ]]; then
1010
echo "Running pnpm audit with high audit level on prod dependencies"
1111
pnpm audit --audit-level=high --prod

0 commit comments

Comments
 (0)