mirror of
https://github.com/siderolabs/omni.git
synced 2025-08-06 09:37:01 +02:00
Fixes: https://github.com/siderolabs/omni/issues/858 Signed-off-by: Artem Chernyshev <artem.chernyshev@talos-systems.com>
21 lines
509 B
Go
21 lines
509 B
Go
// Copyright (c) 2025 Sidero Labs, Inc.
|
|
//
|
|
// Use of this software is governed by the Business Source License
|
|
// included in the LICENSE file.
|
|
|
|
// Package main provides the entrypoint for the omni-integration-test binary.
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
_ "github.com/siderolabs/omni/cmd/acompat" // this package should always be imported first for init->set env to work
|
|
"github.com/siderolabs/omni/cmd/integration-test/pkg"
|
|
)
|
|
|
|
func main() {
|
|
if err := pkg.RootCmd().Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|