提交 2cdd8465 编写于 作者: P Priya Wadhwa

create dir if it doesn't already exist

上级 8072057d
...@@ -21,7 +21,6 @@ package schedule ...@@ -21,7 +21,6 @@ package schedule
import ( import (
"fmt" "fmt"
"os/exec" "os/exec"
"path/filepath"
"time" "time"
"github.com/pkg/errors" "github.com/pkg/errors"
...@@ -93,7 +92,7 @@ func startSystemdService(profile string, duration time.Duration) error { ...@@ -93,7 +92,7 @@ func startSystemdService(profile string, duration time.Duration) error {
if err != nil { if err != nil {
return errors.Wrap(err, "getting command runner") return errors.Wrap(err, "getting command runner")
} }
if rr, err := runner.RunCmd(exec.Command("sudo", "mkdir", "-p", filepath.Dir(constants.ScheduledStopEnvFile))); err != nil { if rr, err := runner.RunCmd(exec.Command("sudo", "mkdir", "-p", "/var/lib/minikube/scheduled-stop")); err != nil {
return errors.Wrapf(err, "creating dirs: %v", rr.Output()) return errors.Wrapf(err, "creating dirs: %v", rr.Output())
} }
// update environment file to include duration // update environment file to include duration
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册