Skip to content

Commit

Permalink
Fix file check
Browse files Browse the repository at this point in the history
  • Loading branch information
mjacobus committed Apr 6, 2020
1 parent 2d866c3 commit 1486349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/koine/file_system/adapters/local.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def write(path, content, options: {})
path = full_path(path)
ensure_target_dir(path)
File.open(path, 'w') do |f|
f.puts(content)
f.write(content)
end
end

Expand Down

0 comments on commit 1486349

Please sign in to comment.