Skip to content

Commit a3cd337

Browse files
authored
Remove --profile-temp from help section (microsoft#159147)
1 parent dc9336c commit a3cd337

File tree

1 file changed

+1
-1
lines changed
  • src/vs/platform/environment/node

1 file changed

+1
-1
lines changed

src/vs/platform/environment/node/argv.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ export const OPTIONS: OptionDescriptions<Required<NativeParsedArgs>> = {
5151
'locale': { type: 'string', cat: 'o', args: 'locale', description: localize('locale', "The locale to use (e.g. en-US or zh-TW).") },
5252
'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.") },
5353
'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.") },
54-
'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.") },
5554
'help': { type: 'boolean', cat: 'o', alias: 'h', description: localize('help', "Print usage.") },
5655

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

159159
_: { type: 'string[]' } // main arguments
160160
};

0 commit comments

Comments
 (0)