Skip to content

Commit 9c0ee9f

Browse files
ForestEckhardtsophiewigmore
authored andcommitted
Removes default tag until api 0.6 version is implemented
1 parent 80194d5 commit 9c0ee9f

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

scribe/emitter.go

-6
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,6 @@ func (e Emitter) LaunchProcesses(processes []packit.Process) {
9696
p = fmt.Sprintf("%s %s", p, strings.Join(process.Args, " "))
9797
}
9898

99-
// This conditional should be replaced when API 0.6 is supported at which
100-
// point any process can be set as default
101-
if process.Type == "web" {
102-
p = fmt.Sprintf("%s %s", p, "(default)")
103-
}
104-
10599
e.Subprocess(p)
106100
}
107101
e.Break()

scribe/emitter_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ func testEmitter(t *testing.T, context spec.G, it spec.S) {
210210

211211
Expect(buffer.String()).To(Equal(` Assigning launch processes:
212212
some-type: some-command
213-
web: web-command (default)
213+
web: web-command
214214
some-other-type: some-other-command some args
215215
216216
`), buffer.String())

0 commit comments

Comments
 (0)