pulumi/pkg/engine/env_current.go
joeduffy f189c40f35 Wire up Lumi to the new runtime strategy
🔥 🔥 🔥  🔥 🔥 🔥

Getting closer on #311.
2017-09-04 11:35:21 -07:00

15 lines
223 B
Go

// Copyright 2017, Pulumi Corporation. All rights reserved.
package engine
import (
"fmt"
)
func (eng *Engine) GetCurrentEnv() error {
if name := eng.getCurrentEnv(); name != "" {
fmt.Println(name)
}
return nil
}