Skip to content
This repository was archived by the owner on Jan 2, 2026. It is now read-only.

Commit 4f0bd66

Browse files
committed
fix: wrong jailer binary path
1 parent a84442f commit 4f0bd66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/jailer/jail.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func WithCopyFile(src string, dst string, mode uint32) Opt {
6262

6363
func WithBinary(src string, dst string) Opt {
6464
return func(o *options) error {
65-
o.copyFiles = append(o.copyFiles, file{Src: src, Dst: src, Mode: 0700})
65+
o.copyFiles = append(o.copyFiles, file{Src: src, Dst: dst, Mode: 0700})
6666
return nil
6767
}
6868
}

0 commit comments

Comments
 (0)