2025-10-21 17:20:20 -04:00
|
|
|
// Copyright IBM Corp. 2016, 2025
|
2025-10-01 15:37:03 -04:00
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
|
|
|
|
|
|
package command
|
|
|
|
|
|
|
|
|
|
import "os"
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
if signed := os.Getenv("VAULT_LICENSE_CI"); signed != "" {
|
|
|
|
|
os.Setenv(EnvVaultLicense, signed)
|
|
|
|
|
}
|
|
|
|
|
}
|