Skip to content
Snippets Groups Projects
Commit a5fa6b23 authored by Jano Hendriks's avatar Jano Hendriks
Browse files

Use bootstrap as executable name for playground environment: change logging

parent 1123f3b1
No related branches found
No related tags found
No related merge requests found
......@@ -45,8 +45,10 @@ func Build(dir string, module string, isDebug bool) error {
fmt.Println(fmt.Sprintf("Building %v", handler))
outputFileName := handler
fmt.Println("Checking to use bootstrap")
if os.Getenv("ENVIRONMENT") == "playground" {
env := os.Getenv("ENVIRONMENT")
fmt.Println("ENV:", env)
if env == "playground" {
fmt.Println("Using 'bootstrap' for output file name")
outputFileName = "bootstrap"
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment