mirror of
https://github.com/cheat/cheat.git
synced 2024-11-01 05:31:01 +01:00
ecc96c64f9
Move installation-related code out of `main.go` and into a new `installer.Run` method.
25 lines
438 B
Go
25 lines
438 B
Go
package installer
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
)
|
|
|
|
const cloneURL = "https://github.com/cheat/cheatsheets.git"
|
|
|
|
// clone clones the community cheatsheets
|
|
func clone(path string) error {
|
|
|
|
// perform the clone in a shell
|
|
cmd := exec.Command("git", "clone", cloneURL, path)
|
|
cmd.Stdout = os.Stdout
|
|
cmd.Stderr = os.Stderr
|
|
err := cmd.Run()
|
|
if err != nil {
|
|
return fmt.Errorf("failed to clone cheatsheets: %v", err)
|
|
}
|
|
|
|
return nil
|
|
}
|