diff --git a/core/scripts/cre/environment/environment/environment.go b/core/scripts/cre/environment/environment/environment.go index 3c2583dd949..6056b27c8a1 100644 --- a/core/scripts/cre/environment/environment/environment.go +++ b/core/scripts/cre/environment/environment/environment.go @@ -36,7 +36,7 @@ import ( libc "github.com/smartcontractkit/chainlink/system-tests/lib/conversions" "github.com/smartcontractkit/chainlink/system-tests/lib/cre" libcontracts "github.com/smartcontractkit/chainlink/system-tests/lib/cre/contracts" - gateway "github.com/smartcontractkit/chainlink/system-tests/lib/cre/don/jobs/gateway" + "github.com/smartcontractkit/chainlink/system-tests/lib/cre/don/jobs/gateway" creenv "github.com/smartcontractkit/chainlink/system-tests/lib/cre/environment" "github.com/smartcontractkit/chainlink/system-tests/lib/crecli" libformat "github.com/smartcontractkit/chainlink/system-tests/lib/format" @@ -765,14 +765,13 @@ func PrintCRELogo() { blue := "\033[38;5;33m" reset := "\033[0m" - fmt.Println() - fmt.Println(blue + " db .d88b. .o88b. .d8b. db .o88b. d8888b. d88888b" + reset) - fmt.Println(blue + " 88 .8P Y8. d8P Y8 d8' `8b 88 d8P Y8 88 `8D 88'" + reset) - fmt.Println(blue + " 88 88 88 8P 88ooo88 88 8P 88oobY' 88ooooo" + reset) - fmt.Println(blue + " 88 88 88 8b 88~~~88 88 8b 88`8b 88~~~~~" + reset) - fmt.Println(blue + " 88booo. `8b d8' Y8b d8 88 88 88booo. Y8b d8 88 `88. 88." + reset) - fmt.Println(blue + " Y88888P `Y88P' `Y88P' YP YP Y88888P `Y88P' 88 YD Y88888P" + reset) - fmt.Println() + fmt.Println("\n" + + blue + " db .d88b. .o88b. .d8b. db .o88b. d8888b. d88888b" + reset + "\n" + + blue + " 88 .8P Y8. d8P Y8 d8' `8b 88 d8P Y8 88 `8D 88'" + reset + "\n" + + blue + " 88 88 88 8P 88ooo88 88 8P 88oobY' 88ooooo" + reset + "\n" + + blue + " 88 88 88 8b 88~~~88 88 8b 88`8b 88~~~~~" + reset + "\n" + + blue + " 88booo. `8b d8' Y8b d8 88 88 88booo. Y8b d8 88 `88. 88." + reset + "\n" + + blue + " Y88888P `Y88P' `Y88P' YP YP Y88888P `Y88P' 88 YD Y88888P" + reset + "\n") } func defaultCtfConfigs(topologyFlag string) error {