Skip to content

Commit

Permalink
Update shell profile updater
Browse files Browse the repository at this point in the history
  • Loading branch information
jakob committed Jan 7, 2016
1 parent 4726d32 commit 7a848dc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Postgres/PGShellProfileUpdater.m
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ +(PGShellProfileUpdater*)sharedUpdater {
];
sharedProfileUpdater.oldPaths = @[
@"/Applications/Postgres.app/Contents/MacOS/bin",
@"/Applications/Postgres93.app/Contents/MacOS/bin"
@"/Applications/Postgres93.app/Contents/MacOS/bin",
@"/Applications/Postgres.app/Contents/Versions/9.3/bin",
@"/Applications/Postgres.app/Contents/Versions/9.4/bin"
];
sharedProfileUpdater.currentPath = [NSString stringWithFormat:@"/Applications/Postgres.app/Contents/Versions/%s/bin", xstr(PG_MAJOR_VERSION)];
sharedProfileUpdater.currentPath = [NSString stringWithFormat:@"/Applications/Postgres.app/Contents/Versions/latest/bin"];
});
return sharedProfileUpdater;
}
Expand Down

0 comments on commit 7a848dc

Please sign in to comment.