File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -246,17 +246,16 @@ function configureCommandlineSwitchesSync(cliArgs) {
246
246
app . commandLine . appendSwitch ( argvKey ) ;
247
247
}
248
248
} else if ( argvValue ) {
249
- if ( argvKey === 'force-color-profile' ) {
250
- // Color profile
251
- app . commandLine . appendSwitch ( argvKey , argvValue ) ;
252
- } else if ( argvKey === 'password-store' ) {
249
+ if ( argvKey === 'password-store' ) {
253
250
// Password store
254
251
// TODO@TylerLeonhardt : Remove this migration in 3 months
255
252
let migratedArgvValue = argvValue ;
256
253
if ( argvValue === 'gnome' || argvValue === 'gnome-keyring' ) {
257
254
migratedArgvValue = 'gnome-libsecret' ;
258
255
}
259
256
app . commandLine . appendSwitch ( argvKey , migratedArgvValue ) ;
257
+ } else {
258
+ app . commandLine . appendSwitch ( argvKey , argvValue ) ;
260
259
}
261
260
}
262
261
}
You can’t perform that action at this time.
0 commit comments