This repository was archived by the owner on May 20, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ function accessKeyRemove(command: cli.IAccessKeyRemoveCommand): Promise<void> {
153
153
if ( wasConfirmed ) {
154
154
return sdk . removeAccessKey ( command . accessKey )
155
155
. then ( ( ) : void => {
156
- log ( " Successfully removed the \"" + command . accessKey + "\" access key." ) ;
156
+ log ( ` Successfully removed the " ${ command . accessKey } " access key.` ) ;
157
157
} ) ;
158
158
}
159
159
@@ -1430,14 +1430,14 @@ function sessionList(command: cli.ISessionListCommand): Promise<void> {
1430
1430
1431
1431
function sessionRemove ( command : cli . ISessionRemoveCommand ) : Promise < void > {
1432
1432
if ( os . hostname ( ) === command . machineName ) {
1433
- throw new Error ( "Cannot remove the current session via this command. Please run 'code-push logout' if you would like to end it ." ) ;
1433
+ throw new Error ( "Cannot remove the current login session via this command. Please run 'code-push logout' instead ." ) ;
1434
1434
} else {
1435
1435
return confirm ( )
1436
1436
. then ( ( wasConfirmed : boolean ) : Promise < void > => {
1437
1437
if ( wasConfirmed ) {
1438
1438
return sdk . removeSession ( command . machineName )
1439
1439
. then ( ( ) : void => {
1440
- log ( `Successfully removed the existing session for "${ command . machineName } ".` ) ;
1440
+ log ( `Successfully removed the login session for "${ command . machineName } ".` ) ;
1441
1441
} ) ;
1442
1442
}
1443
1443
You can’t perform that action at this time.
0 commit comments