Skip to content

Commit

Permalink
Update string comparison checking for clean working tree
Browse files Browse the repository at this point in the history
This must have changed in git at some point?
  • Loading branch information
interstateone committed Oct 25, 2018
1 parent 6e8c79f commit e16674c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ task :release, :version do |task, args|

puts "Validating local github state"
git_status = `git status -b`
if (git_status.include? "up-to-date with 'origin/master'.") && (git_status.include? "nothing to commit, working tree clean
if (git_status.include? "up to date with 'origin/master'.") && (git_status.include? "nothing to commit, working tree clean
")
puts "Updating podspec."
filename = "Astro.podspec"
Expand Down

0 comments on commit e16674c

Please sign in to comment.