lib/dev_flow/commands/ur.rb in dev_flow-0.1.5 vs lib/dev_flow/commands/ur.rb in dev_flow-0.1.6
- old
+ new
@@ -8,10 +8,10 @@
error "No change detected on #{@config[:roadmap]}" unless @git.modified_files.include? File.expand_path(@config[:roadmap])
`git add .`
`git commit -am 'update roadmap'`
info "Push your change to the remote server"
- `git push #{@config[:git_remote]} develop` if @config[:git_remote]
+ `git push #{@config["git_remote"]} develop` if @config["git_remote"]
end
end # class
end