Skip to content

Commit c4cceb3

Browse files
author
Matthew Fisher
committed
fix(tests): fixup deis binary lookup
var Deis will always have at least one space.
1 parent d332f73 commit c4cceb3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/utils/itutils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
var Deis = os.Getenv("DEIS_BINARY") + " "
2424

2525
func init() {
26-
if Deis == "" {
26+
if Deis == " " {
2727
Deis = "deis "
2828
}
2929
}

0 commit comments

Comments
 (0)