From 2220473c22150b8ce392fc66cc703e7279145e9b Mon Sep 17 00:00:00 2001 From: Vinyl Darkscratch Date: Tue, 24 Apr 2018 00:49:14 -0700 Subject: [PATCH] Fix #33 --- scripts/Script.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/Script.rb b/scripts/Script.rb index 1c5c1f0..02ade60 100644 --- a/scripts/Script.rb +++ b/scripts/Script.rb @@ -389,6 +389,8 @@ module Script end rescue Errno::EACCES => e #this probably means the clover.exe already exists and is running, so no need to create it again + rescue Errno::EEXIST => e + #this means that the journal file already exists, so no need to create it again end if File.exists?("README.txt") File.open("README.txt", "rb") do |input|