Skip to content

Commit

Permalink
Remove --profile-temp from help section (#159147)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 authored Aug 25, 2022
1 parent dc9336c commit a3cd337
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/platform/environment/node/argv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export const OPTIONS: OptionDescriptions<Required<NativeParsedArgs>> = {
'locale': { type: 'string', cat: 'o', args: 'locale', description: localize('locale', "The locale to use (e.g. en-US or zh-TW).") },
'user-data-dir': { type: 'string', cat: 'o', args: 'dir', description: localize('userDataDir', "Specifies the directory that user data is kept in. Can be used to open multiple distinct instances of Code.") },
'profile': { type: 'string', 'cat': 'o', args: 'settingsProfileName', description: localize('settingsProfileName', "Opens the provided folder or workspace with the given profile and associates the profile with the workspace. If the profile does not exist, a new empty one is created. A folder or workspace must be provided for the profile to take effect.") },
'profile-temp': { type: 'boolean', 'cat': 'o', description: localize('temporaryProfile', "Creates an empty temporary profile and opens the provided folder or workspace with this profile. A folder or workspace must be provided for the profile to take effect.") },
'help': { type: 'boolean', cat: 'o', alias: 'h', description: localize('help', "Print usage.") },

'extensions-dir': { type: 'string', deprecates: ['extensionHomePath'], cat: 'e', args: 'dir', description: localize('extensionHomePath', "Set the root path for extensions.") },
Expand Down Expand Up @@ -155,6 +154,7 @@ export const OPTIONS: OptionDescriptions<Required<NativeParsedArgs>> = {
'vmodule': { type: 'string' },
'_urls': { type: 'string[]' },
'disable-dev-shm-usage': { type: 'boolean' },
'profile-temp': { type: 'boolean' },

_: { type: 'string[]' } // main arguments
};
Expand Down

0 comments on commit a3cd337

Please sign in to comment.