@@ -24,8 +24,8 @@ export const getTrackingFileVersion = (org: Org, projectPath: string): TrackingF
24
24
const username = org . getUsername ( ) ;
25
25
if ( typeof username === 'string' ) {
26
26
if (
27
- // has one of the old files
28
- fs . existsSync ( path . join ( orgsDir , username , 'sourcePathInfos.json' ) ) ||
27
+ // has both of the old files (org:create puts maxRevision.json in the username dir)
28
+ fs . existsSync ( path . join ( orgsDir , username , 'sourcePathInfos.json' ) ) &&
29
29
fs . existsSync ( path . join ( orgsDir , username , 'maxRevision.json' ) )
30
30
) {
31
31
return 'toolbelt' ;
@@ -94,7 +94,7 @@ export const replaceRenamedCommands = (input: string): string => {
94
94
95
95
export const renames = new Map ( [
96
96
[ 'force:source:status' , 'force:source:beta:status' ] ,
97
- [ 'force:source:status ' , 'force:source:beta:status ' ] ,
97
+ [ 'force:source:push ' , 'force:source:beta:push ' ] ,
98
98
[ 'force:source:pull' , 'force:source:beta:pull' ] ,
99
99
[ 'force:source:tracking:reset' , 'force:source:beta:tracking:reset' ] ,
100
100
[ 'force:source:tracking:clear' , 'force:source:beta:tracking:clear' ] ,
0 commit comments