lib/gitscape/base.rb in gitscape-1.5.6 vs lib/gitscape/base.rb in gitscape-1.5.7

- old
+ new

@@ -171,10 +171,10 @@ # Cut the branch puts `git checkout -b "#{release_branch_name}" master` exit 1 unless $?.exitstatus == 0 # Bump the version number - `echo "#i{new_version_number}" > ./version` + `echo "i#{new_version_number}" > ./version` exit 1 unless $?.exitstatus == 0 # Commit the bump puts `git commit -a -m "Begin i#{new_version_number} release candidate"` exit 1 unless $?.exitstatus == 0