diff options
Diffstat (limited to 'plugins')
-rwxr-xr-x | plugins/examples/save_to_file.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/examples/save_to_file.rb b/plugins/examples/save_to_file.rb index 61b0df9bfd6..988a701625c 100755 --- a/plugins/examples/save_to_file.rb +++ b/plugins/examples/save_to_file.rb @@ -1,3 +1,3 @@ #!/usr/bin/env ruby x = STDIN.read -File.write('/tmp/rb-data.txt', x) +File.write("/tmp/rb-data.txt", x) |