We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eff8c2e commit c34be6bCopy full SHA for c34be6b
1 file changed
deisctl/cmd/cmd.go
@@ -296,7 +296,7 @@ Options:
296
return err
297
}
298
// download and save the unit files to the specified path
299
- rootURL := "https://raw.githubusercontent.com/deis/deis/deisctl/"
+ rootURL := "https://raw.githubusercontent.com/deis/deis/"
300
tag := args["--tag"].(string)
301
units := []string{
302
"deis-builder.service",
@@ -311,7 +311,7 @@ Options:
311
"deis-router.service",
312
313
for _, unit := range units {
314
- src := rootURL + tag + "/units/" + unit
+ src := rootURL + tag + "/deisctl/units/" + unit
315
dest := filepath.Join(dir, unit)
316
res, err := http.Get(src)
317
if err != nil {
0 commit comments