diff options
author | rowanbeentje <rowan@beent.je> | 2012-11-18 16:07:31 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2012-11-18 16:07:31 +0000 |
commit | 4d3952f94de816b00ae1a84d110396bc5c5edabb (patch) | |
tree | 652a97fa5c0b52c75a2763fda801e79ef2e168fa | |
parent | fb1d481a1d9420bffc830696de66b2874e64a67a (diff) | |
download | sequelpro-4d3952f94de816b00ae1a84d110396bc5c5edabb.tar.gz sequelpro-4d3952f94de816b00ae1a84d110396bc5c5edabb.tar.bz2 sequelpro-4d3952f94de816b00ae1a84d110396bc5c5edabb.zip |
- Attempt to fix nightly build signing
- Add .key to the SSH key accepted file type list to partially address Issue #1493
-rw-r--r-- | Source/SPConnectionController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPConnectionController.m b/Source/SPConnectionController.m index 797f122c..073dc53c 100644 --- a/Source/SPConnectionController.m +++ b/Source/SPConnectionController.m @@ -389,7 +389,7 @@ static NSComparisonResult _compareFavoritesUsingKey(id favorite1, id favorite2, directoryPath = [sshKeyLocation stringByDeletingLastPathComponent]; } - permittedFileTypes = [NSArray arrayWithObjects:@"pem", @"", nil]; + permittedFileTypes = [NSArray arrayWithObjects:@"pem", @"key", @"", nil]; [keySelectionPanel setAccessoryView:sshKeyLocationHelp]; } |