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

Commit

Permalink
Don't check if repo is dirty if we're pretending
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabe Berke-Williams committed Aug 2, 2011
1 parent 4a78b31 commit 7b94c68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kumade/deployer.rb
Expand Up @@ -59,7 +59,7 @@ def on_cedar?(app)
end

def ensure_clean_git
if git_dirty?
if ! pretending && git_dirty?
error("Cannot deploy: repo is not clean.")
else
success("Git repo is clean")
Expand Down

0 comments on commit 7b94c68

Please sign in to comment.