|
|
@ -30,8 +30,8 @@ var ProjectTypes = []*Project{
|
|
30
|
30
|
&Project{"docker/fig", Commands{"build": "fig build", "run": "fig up"}, matchFile("fig.yml")},
|
|
31
|
31
|
&Project{"docker/default", Commands{"build": "docker build ."}, matchFile("Dockerfile")},
|
|
32
|
32
|
&Project{"executable", Commands{"run": "{file}"}, executableDefault},
|
|
33
|
|
&Project{"go/default", Commands{"build": "go build {file}", "run": "go build $(basename {file}) && ./$(basename {file} .go)"},
|
|
34
|
|
matchPattern("*.go")},
|
|
|
33
|
&Project{"go/default", Commands{"build": "go build {file}", "run": "go build $(basename {file}) && ./$(basename {file} .go)",
|
|
|
34
|
"test": "go test"}, matchPattern("*.go")},
|
|
35
|
35
|
&Project{"haskell/cabal", Commands{"build": "cabal build", "run": "cabal run", "test": "cabal test"},
|
|
36
|
36
|
matchPattern("*.cabal")},
|
|
37
|
37
|
&Project{"haskell/default", Commands{"run": "runhaskell {file}"}, haskellDefault},
|