Skip to content

Commit

Permalink
Fix missing argument in init
Browse files Browse the repository at this point in the history
  • Loading branch information
Rémi Durieu committed Oct 19, 2020
1 parent 46b008b commit 0d84cc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/dotrs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ command = ARGV[0].to_sym

# Handle the init command
if command == :init
Commands.init
Commands.init(ARGV[1])
exit(true)
end

Expand Down
2 changes: 1 addition & 1 deletion lib/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

# The version of dotrs
module Dotrs
VERSION = '2.1.0'
VERSION = '2.1.1'
end

0 comments on commit 0d84cc3

Please sign in to comment.