Skip to content
This repository has been archived by the owner on Oct 1, 2018. It is now read-only.

Commit

Permalink
Fix for issue #16
Browse files Browse the repository at this point in the history
  • Loading branch information
nikDemyankov committed Dec 2, 2015
1 parent db50d6b commit 9f6709a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ var androidIdentifier = {

var update = {
description: 'Update method (required)',
pattern: /(start|resume|instant)/,
pattern: /(start|resume|now)/,
required: true,
message: 'Needs to be one of start, resume or instant',
message: 'Needs to be one of start, resume or now',
'default': 'resume'
};

Expand Down
4 changes: 2 additions & 2 deletions src/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ const androidIdentifier = {

const update = {
description: 'Update method (required)',
pattern: /(start|resume|instant)/,
pattern: /(start|resume|now)/,
required: true,
message: 'Needs to be one of start, resume or instant',
message: 'Needs to be one of start, resume or now',
default: 'resume',
};

Expand Down

0 comments on commit 9f6709a

Please sign in to comment.