-
-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change hard-coded bundleID to automatically retrieved one #202
Conversation
Signed-off-by: Alex Lavallee <73203142+lavalleeale@users.noreply.github.com>
@@ -24,19 +24,19 @@ struct SecretDetailView<SecretType: Secret>: View { | |||
.frame(minHeight: 200, maxHeight: .infinity) | |||
} | |||
|
|||
var dashedKeyName: String { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Think this file got included by accident. Otherwise looks good. 🙏
Secretive.xcodeproj/project.pbxproj
Outdated
@@ -86,6 +86,7 @@ | |||
50BB046B2418AAAE00D6E079 /* EmptyStoreView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50BB046A2418AAAE00D6E079 /* EmptyStoreView.swift */; }; | |||
50C385A3240789E600AF2719 /* OpenSSHReader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50C385A2240789E600AF2719 /* OpenSSHReader.swift */; }; | |||
50C385A52407A76D00AF2719 /* SecretDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50C385A42407A76D00AF2719 /* SecretDetailView.swift */; }; | |||
FA0B34672599619E0013AB3A /* bundleIDs.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA0B34662599619E0013AB3A /* bundleIDs.swift */; }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style nit could you rename the bundleIDs.swift
to BundleIDs.swift
Removed incorrectly added changes
@@ -36,7 +36,7 @@ struct SecretDetailView<SecretType: Secret>: View { | |||
} | |||
|
|||
var keyString: String { | |||
keyWriter.openSSHString(secret: secret, comment: "\(dashedKeyName)@\(dashedHostName)") | |||
keyWriter.openSSHString(secret: secret, comment: "\(dashedUserName)@\(dashedHostName)") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On more change hanging on there – once that's changed though (and CI passes, which is running really slowly tonight for some reason) I'll merge this in. Thanks for the improvements! 🙏
OK, I think I understand and changed it. Also, GitHub said that they are changing how macOS runners work so they will be slow to start for a little while. It is not showing the log so I do not know why it failed, it works for me? |
👏🙏 |
@lavalleeale this is now out in 2.1.1, thanks for your contribution! |
Here is just the bundleID part