From 32ac02d65bc6417c66a730c2671e45a19ad5ed18 Mon Sep 17 00:00:00 2001 From: Dave Plunkett Date: Thu, 14 Nov 2024 16:27:31 -0700 Subject: [PATCH] Update command-line-definitions.ts (#144) Changed singled quotes to double quotes in the files usage example. --- bin/command-line-definitions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/command-line-definitions.ts b/bin/command-line-definitions.ts index 23ad3cb..492506a 100644 --- a/bin/command-line-definitions.ts +++ b/bin/command-line-definitions.ts @@ -76,7 +76,7 @@ export const argDefinitions: Array = [ type: String, defaultValue: '*.js.map', typeLabel: '{underline string} (optional)', - description: 'Glob pattern that specifies a set of files to upload. For example, **/*.\\{pdb,exe,dll\\} will recursively search for .pdb, .exe, and .dll files. Defaults to \'*.js.map\'', + description: 'Glob pattern that specifies a set of files to upload. For example, **/*.\\{pdb,exe,dll\\} will recursively search for .pdb, .exe, and .dll files. Defaults to \"*.js.map\"', }, { name: 'directory', @@ -153,4 +153,4 @@ function getPackageVersion(): string { } catch { throw new Error('Could not parse package.json'); } -} \ No newline at end of file +}