mirror of https://github.com/curusarn/resh
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
585 B
28 lines
585 B
package cmd
|
|
|
|
import (
|
|
"os"
|
|
"os/exec"
|
|
"os/user"
|
|
"path/filepath"
|
|
|
|
"github.com/curusarn/resh/cmd/control/status"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var updateCmd = &cobra.Command{
|
|
Use: "update",
|
|
Short: "check for updates and update RESH",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
usr, _ := user.Current()
|
|
dir := usr.HomeDir
|
|
rawinstallPath := filepath.Join(dir, ".resh/rawinstall.sh")
|
|
execCmd := exec.Command("bash", rawinstallPath)
|
|
execCmd.Stdout = os.Stdout
|
|
execCmd.Stderr = os.Stderr
|
|
err := execCmd.Run()
|
|
if err == nil {
|
|
exitCode = status.Success
|
|
}
|
|
},
|
|
}
|
|
|