[#7116] exclude syscall.Exec for WASM
This commit is contained in:
9
core/syscall_wasm.go
Normal file
9
core/syscall_wasm.go
Normal file
@@ -0,0 +1,9 @@
|
||||
//go:build js && wasm
|
||||
|
||||
package core
|
||||
|
||||
import "errors"
|
||||
|
||||
func exec(argv0 string, argv []string, envv []string) error {
|
||||
return errors.ErrUnsupported
|
||||
}
|
||||
Reference in New Issue
Block a user