-
-
Notifications
You must be signed in to change notification settings - Fork 583
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
Use https links #91
Use https links #91
Conversation
Danger run resulted in 2 markdowns and 1 message; to find out more, see the checks page. Generated by 🚫 dangerJS |
Codecov Report
@@ Coverage Diff @@
## master #91 +/- ##
=======================================
Coverage 84.78% 84.78%
=======================================
Files 183 183
Lines 6341 6341
=======================================
Hits 5376 5376
Misses 965 965 Continue to review full report at Codecov.
|
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.
Neat, great work, thanks a lot for this change. I just added a minor comment.
@@ -4,7 +4,7 @@ public class Constants { | |||
public static let versionFileName = ".tuist-version" | |||
public static let binFolderName = ".tuist-bin" | |||
public static let binName = "tuist" | |||
public static let gitRepositorySSH = "git@github.com:tuist/tuist.git" | |||
public static let gitRepositorySSH = "https://github.com/tuist/tuist.git" |
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.
Now that it is not longer containing a SSH url, this variable might be refactored to avoid including SSH on its name. I think something as gitRepositoryURL
or similar might make sense.
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.
You are right. I'll update it. Good catch!
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.
Resolves #88
Short description 📝
As @dcordero pointed out, GitHub encourages using https links instead of ssh's.
Solution 📦
Replace ssh links with the https version of them.