Skip to content
This repository has been archived by the owner on Nov 14, 2019. It is now read-only.

Commit

Permalink
add version file and change to v0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
antho1404 committed Jun 14, 2019
1 parent 3411e53 commit c2479ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/daemon/start.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {flags} from '@oclif/command'

import Command from '../../docker-command'
import version from '../../version';

import Status, {ServiceStatus} from './status'

Expand All @@ -12,7 +13,7 @@ export default class Start extends Command {
version: flags.string({
description: 'Version of the engine to run',
required: true,
default: 'v0.10.0'
default: version.engine
}),
'log-force-colors': flags.boolean({
description: 'log force colors',
Expand Down
3 changes: 3 additions & 0 deletions src/version.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default {
engine: 'v0.10.1'
}

0 comments on commit c2479ea

Please sign in to comment.