Skip to content

Commit c2b3386

Browse files
authored
Merge pull request #11 from lainosantos/fix_ssh_git_repo_url
fix recipe url from ssh git url repo
2 parents d07a0ef + f94b850 commit c2b3386

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

assets/js/dashboard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ let vm = new Vue({
9393
pattern = /^git\@[a-z.]*\:/
9494
if (pattern.test(repoUrl)) {
9595
gitServerHostName = pattern.exec(repoUrl)[0].replace('git@', '').replace(':', '')
96-
repoUrl.replace(pattern, 'https://' + gitServerHostName + '/')
96+
repoUrl = repoUrl.replace(pattern, 'https://' + gitServerHostName + '/')
9797
}
9898

9999
pattern = /^https?\:\/\/[a-z.]*/

public/build/dashboard.37bb0847d2441133ec9d.js renamed to public/build/dashboard.5e02d380f9d70724d94b.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"build/dashboard.css": "/build/dashboard.b1963f9d56ce5d23c3b365942619a02a.css",
3-
"build/dashboard.js": "/build/dashboard.37bb0847d2441133ec9d.js"
3+
"build/dashboard.js": "/build/dashboard.5e02d380f9d70724d94b.js"
44
}

0 commit comments

Comments
 (0)