Skip to content

Commit

Permalink
fix: update command-line help (#144)
Browse files Browse the repository at this point in the history
Changed singled quotes to double quotes in the files usage example.
  • Loading branch information
daveplunkett authored and bobbyg603 committed Nov 14, 2024
1 parent b3c5b32 commit 4e8ec07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/command-line-definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const argDefinitions: Array<CommandLineDefinition> = [
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',
Expand Down Expand Up @@ -153,4 +153,4 @@ function getPackageVersion(): string {
} catch {
throw new Error('Could not parse package.json');
}
}
}

0 comments on commit 4e8ec07

Please sign in to comment.