misc/docker: fix expected output binaries location

Change-Id: I3f7f30580a513602e0091269163af9618926623a
This commit is contained in:
mpl 2018-04-23 13:59:06 -07:00
parent 3dc471f790
commit 4ed26b3d04
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ func buildCamlistored() {
// And move it to the output dir
check(os.MkdirAll(path.Join(*outDir, "/bin"), 0777))
cmd = exec.Command("mv", "/gopath/src/perkeep.org/bin/perkeepd", path.Join(*outDir, "/bin"))
cmd = exec.Command("mv", "/gopath/bin/perkeepd", path.Join(*outDir, "/bin"))
if err := cmd.Run(); err != nil {
log.Fatalf("Error moving perkeepd binary %v in output dir %v: %v",
"/gopath/src/perkeep.org/bin/perkeepd", path.Join(*outDir, "/bin"), err)