diff options
| author | Paul Buetow <paul@buetow.org> | 2025-03-22 23:27:28 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-03-22 23:27:28 +0200 |
| commit | 5fa2439de2cedfaef6aca125769facd4bc3bc9b5 (patch) | |
| tree | 44e3cd78bf7219a0f22207bc9e922258dd4cf30c /cmd | |
| parent | db7cdf67d04c96b7cf9d993d76f5911cf6eb234a (diff) | |
SETFL
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/ior/main.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/ior/main.go b/cmd/ior/main.go index 025abbb..2d8584a 100644 --- a/cmd/ior/main.go +++ b/cmd/ior/main.go @@ -3,8 +3,12 @@ package main import ( "ior/internal" "ior/internal/flags" + "runtime" ) func main() { + if runtime.GOOS != "linux" { + panic("Unsupported OS") + } internal.Run(flags.New()) } |
