Skip to content

Commit 0bd00d9

Browse files
author
Bhavi Dhingra
committed
fix: correct explorer URLs
1 parent 0bdf723 commit 0bd00d9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

util/custom-git-explorer/__get_url

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ function __get_url() {
1515
"show/view")
1616
case "${noun}" in
1717
"status")
18-
url="https://bhavidhingra.github.io/just-my-docs/explorer/show/status"
18+
url="https://custom-git.io/explorer/show/status"
1919
;;
2020
"uncommitted changes")
21-
url="https://bhavidhingra.github.io/just-my-docs/explorer/show/uncommitted-changes"
21+
url="https://custom-git.io/explorer/show/uncommitted-changes"
2222
;;
2323
"commit logs/history")
24-
url="https://bhavidhingra.github.io/just-my-docs/explorer/show/commit-logs"
24+
url="https://custom-git.io/explorer/show/commit-logs"
2525
;;
2626
*)
2727
__print_err "[__get_url] verb: ${verb}, unknown noun: ${noun}"
@@ -31,7 +31,7 @@ function __get_url() {
3131
"add")
3232
case "${noun}" in
3333
"new changes")
34-
url="https://bhavidhingra.github.io/just-my-docs/explorer/add/new-changes"
34+
url="https://custom-git.io/explorer/add/new-changes"
3535
;;
3636
*)
3737
__print_err "[__get_url] verb: ${verb}, unknown noun: ${noun}"
@@ -41,10 +41,10 @@ function __get_url() {
4141
"restore")
4242
case "${noun}" in
4343
"staged changes")
44-
url="https://bhavidhingra.github.io/just-my-docs/explorer/restore/staged-changes"
44+
url="https://custom-git.io/explorer/restore/staged-changes"
4545
;;
4646
"unstaged changes")
47-
url="https://bhavidhingra.github.io/just-my-docs/explorer/restore/unstaged-changes"
47+
url="https://custom-git.io/explorer/restore/unstaged-changes"
4848
;;
4949
*)
5050
__print_err "[__get_url] verb: ${verb}, unknown noun: ${noun}"

0 commit comments

Comments
 (0)