Skip to content

Commit

Permalink
bugfix: file://
Browse files Browse the repository at this point in the history
  • Loading branch information
tani committed Aug 29, 2015
1 parent 874a4d1 commit 7c71156
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addon/install.ros
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ exec ros -Q -- $0 "$@"
(dolist (url (mapcar #'quri:uri argv))
(cond
((string= (quri:uri-scheme url) "gist")(install-gist url))
((string= (quri:uri-scheme url) "file")(install-https url))
((string= (quri:uri-scheme url) "file")(install-file url))
((string= (quri:uri-scheme url) "ql")(install-ql url))
((string= (quri:uri-scheme url) "http")(install-http url))
((string= (quri:uri-scheme url) "https")(install-https url))
Expand Down
2 changes: 1 addition & 1 deletion addon/update.ros
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ exec ros -Q -- $0 "$@"
(dolist (url (mapcar #'quri:uri argv))
(cond
((string= (quri:uri-scheme url) "gist")(install-gist url))
((string= (quri:uri-scheme url) "file")(install-https url))
((string= (quri:uri-scheme url) "file")(install-file url))
((string= (quri:uri-scheme url) "ql")(install-ql url))
((string= (quri:uri-scheme url) "http")(install-http url))
((string= (quri:uri-scheme url) "https")(install-https url))
Expand Down

0 comments on commit 7c71156

Please sign in to comment.