Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
codylerum committed Aug 23, 2012
1 parent 4f378a3 commit a9fdd21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/awestruct/deploy/base_deploy.rb
Expand Up @@ -6,7 +6,7 @@ module Deploy
class Base
UNCOMMITTED_CHANGES = "You have uncommitted changes in the working branch. Please commit or stash them."
def run(deploy_config)
if deploy_config['uncommited'] == true
if deploy_config['uncommitted'] == true
publish_site
else
git.status.changed.empty? ? publish_site : existing_changes
Expand Down
2 changes: 1 addition & 1 deletion spec/github_pages_deploy_spec.rb
Expand Up @@ -9,7 +9,7 @@
@deploy_config = mock
@deploy_config.stub(:[]).with('branch').and_return('the-branch')
@deploy_config.stub(:[]).with('repository').and_return('the-repo')
@deploy_config.stub(:[]).with('uncommited').and_return('false')
@deploy_config.stub(:[]).with('uncommitted').and_return('false')
@deployer = Awestruct::Deploy::GitHubPagesDeploy.new( site_config, @deploy_config )

@git = mock
Expand Down

0 comments on commit a9fdd21

Please sign in to comment.