Skip to content

Commit

Permalink
fix: pull bundle data using https (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
inkfarer authored Mar 30, 2022
1 parent ee0c4f9 commit 1427ea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function action(repo: string, options: { dev: boolean }) {
}

const hostedInfo = (parsed.hosted as unknown) as HostedGitInfo;
const repoUrl = hostedInfo.git();
const repoUrl = hostedInfo.https();
if (!repoUrl) {
console.error('Please enter a valid git repository URL or GitHub username/repo pair.');
return;
Expand Down

0 comments on commit 1427ea9

Please sign in to comment.