Skip to content

Commit

Permalink
fix: use github url to download omf install script (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
sralloza authored Nov 8, 2021
1 parent 6fbb44e commit 6343eb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/layer2.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func InstallOhMyFish(conn SSHConnection, args Layer2Args) (bool, error) {
return false, nil
}

_, _, err = conn.run("curl -L https://get.oh-my.fish > /tmp/omf.sh")
_, _, err = conn.run("curl -L https://raw.githubusercontent.com/oh-my-fish/oh-my-fish/master/bin/install > /tmp/omf.sh")
if err != nil {
return false, fmt.Errorf("error downloading oh-my-fish installer: %w", err)
}
Expand Down

0 comments on commit 6343eb3

Please sign in to comment.