move restic binary into /usr/bin so it's in PATH

Signed-off-by: Steve Kriss <steve@heptio.com>
This commit is contained in:
Steve Kriss
2018-06-19 11:31:27 -07:00
parent 01b5828ee7
commit de12ca4882
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ type Command struct {
// StringSlice returns the command as a slice of strings.
func (c *Command) StringSlice() []string {
res := []string{"/restic"}
res := []string{"restic"}
res = append(res, c.Command, repoFlag(c.RepoPrefix, c.Repo))
if c.PasswordFile != "" {