Skip to content

Commit

Permalink
Made starting and stopping language consistent, thinking it'd be good…
Browse files Browse the repository at this point in the history
… to not refer to the Docker container as "Lamington" or we'll confuse people.
  • Loading branch information
thekevinbrown committed May 7, 2019
1 parent da3732f commit d3b616a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ export const startContainer = async () => {
* @returns Docker command promise
*/
export const stopContainer = async () => {
spinner.create('Stopping Lamington');
spinner.create('Stopping EOS Docker Container');

try {
await docker.command('stop lamington');
spinner.end('Stopped Lamington');
spinner.end('Stopped EOS Docker Container');
} catch (err) {
spinner.fail(err);
}
Expand Down

0 comments on commit d3b616a

Please sign in to comment.