lib/cli.rb in exercism-0.0.6 vs lib/cli.rb in exercism-0.0.7
- old
+ new
@@ -37,9 +37,10 @@
default_path = FileUtils.pwd
path = ask("What is your exercism exercises project path? (#{default_path})")
if path.empty?
path = default_path
end
+ path = File.expand_path(path)
Exercism.login(username, key, path)
say("Your credentials have been written to #{Exercism.config.file}")
end