SteeltoeOSS / Tooling

Steeltoe developer tool collection
https://steeltoe.io/
Apache License 2.0
12 stars 7 forks source link

st init doesn't reinit config #81

Closed ccheetham closed 4 years ago

ccheetham commented 4 years ago

Running st init should revert Tooling config to an empty config.

In following example, the app foo is still present after the re-init.

% st init
Initialized Steeltoe Developer Tools

% st add app foo
Added app 'foo'

% cat steeltoe.yml
apps:
  foo:
    deployArgs: {}
services: {}

% st init -F
Initialized Steeltoe Developer Tools

% cat steeltoe.yml
apps:
  foo:
    deployArgs: {}
services: {}