From fad9c5a206d2efaf0a9235d1110b1536429402ed Mon Sep 17 00:00:00 2001 From: yeikel Date: Mon, 15 Sep 2025 23:09:43 -0400 Subject: [PATCH] Avoid duplicate -d flag by making docker URL option long-only --- src/cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.ts b/src/cli.ts index 77faec8b8..208885e82 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -20,7 +20,7 @@ cli 'A URL for Dependabot API is required.' ) .option( - '-d, --dependabot-api-docker-url ', + '--dependabot-api-docker-url ', 'A URL to be used to access the API from Dependabot containers.' ) .parse(process.argv)