Skip to content

Commit

Permalink
Fix clone URI (#39)
Browse files Browse the repository at this point in the history
Fixes:
```
Cloning into 'smackage'...
fatal: remote error: 
  The unauthenticated git protocol on port 9418 is no longer supported.
Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information.
```
  • Loading branch information
HarrisonGrodin authored Nov 2, 2021
1 parent bc9a351 commit 65ada89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export async function getSmackage(compiler: string): Promise<void> {
// Step 2. (Ignored.)

// Step 3. Download.
await exec.exec("git", ["clone", "git://github.com/standardml/smackage.git"]);
await exec.exec("git", ["clone", "git@github.com:standardml/smackage.git"]);
await exec.exec("make", [compiler], { cwd: "smackage" });

// Step 4. Update your PATH.
Expand Down

0 comments on commit 65ada89

Please sign in to comment.