Skip to content

Commit

Permalink
fix exe path in deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
johningve committed Nov 4, 2021
1 parent fe7a8d3 commit 3231582
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require (
github.com/mattn/go-isatty v0.0.12
github.com/mitchellh/go-homedir v1.1.0
github.com/relab/gorums v0.5.1-0.20210629194217-9811e4f219ca
github.com/relab/iago v0.0.0-20211103145729-e624a69d542c
github.com/relab/iago v0.0.0-20211104134648-e7947964e998
github.com/relab/wrfs v0.0.0-20210628111300-b51570396aec
github.com/spf13/cobra v1.2.1
github.com/spf13/viper v1.8.1
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -660,6 +660,8 @@ github.com/relab/gorums v0.5.1-0.20210629194217-9811e4f219ca h1:cqb1YBlUAB97vAdE
github.com/relab/gorums v0.5.1-0.20210629194217-9811e4f219ca/go.mod h1:j1Hja1FIIYjBZ7MlnGhXY1fdY6CeGXS38FBNHJ2w1ic=
github.com/relab/iago v0.0.0-20211103145729-e624a69d542c h1:Xn56Oooqs6JE9UgHkcj83m2xVI0Bd151p62CmMctD3U=
github.com/relab/iago v0.0.0-20211103145729-e624a69d542c/go.mod h1:dYG949kHM8Kxjoffrca+4+VS3NfZuE7IYVePd65OJt8=
github.com/relab/iago v0.0.0-20211104134648-e7947964e998 h1:kTjVwdsZRgxv6BNzpXWQiqc+ymVAOMHugPe0ilLc9zU=
github.com/relab/iago v0.0.0-20211104134648-e7947964e998/go.mod h1:dYG949kHM8Kxjoffrca+4+VS3NfZuE7IYVePd65OJt8=
github.com/relab/wrfs v0.0.0-20210628111300-b51570396aec h1:VG/tFt+ffJMtZj5PIf5S3P7zsTwWsCOqFMyqZ0mPvyY=
github.com/relab/wrfs v0.0.0-20210628111300-b51570396aec/go.mod h1:8BTalsvE1BexSfZZFmZfmJKqfoXPzsP/ixpVOmg7Udk=
github.com/remyoudompheng/bigfft v0.0.0-20170806203942-52369c62f446/go.mod h1:uYEyJGbgTkfkS4+E/PavXkNJcbFIpEtjt2B0KDQ5+9M=
Expand Down
2 changes: 1 addition & 1 deletion internal/orchestration/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func Deploy(g iago.Group, cfg DeployConfig) (workers map[string]WorkerSession, e
if err != nil {
return err
}
host.SetVar("exe", dest)
host.SetVar("exe", dest.String())
src, err := iago.NewPathFromAbs(exe)
if err != nil {
return err
Expand Down

0 comments on commit 3231582

Please sign in to comment.