Skip to content

Commit

Permalink
add formation ignore app.json field for #112 (#193)
Browse files Browse the repository at this point in the history
* add formation ignore app.json field for #112

* ignore formation body
  • Loading branch information
jamesward authored Sep 15, 2020
1 parent bab8c5c commit d8c8134
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions cmd/cloudshell_open/appfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,13 @@ type appFile struct {

// The following are unused variables that are still silently accepted
// for compatibility with Heroku app.json files.
IgnoredDescription string `json:"description"`
IgnoredKeywords []string `json:"keywords"`
IgnoredLogo string `json:"logo"`
IgnoredRepository string `json:"repository"`
IgnoredWebsite string `json:"website"`
IgnoredStack string `json:"stack"`
IgnoredDescription string `json:"description"`
IgnoredKeywords []string `json:"keywords"`
IgnoredLogo string `json:"logo"`
IgnoredRepository string `json:"repository"`
IgnoredWebsite string `json:"website"`
IgnoredStack string `json:"stack"`
IgnoredFormation interface{} `json:"formation"`
}

const appJSON = `app.json`
Expand Down

0 comments on commit d8c8134

Please sign in to comment.