six-updater 0.10.6 → 0.10.7
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/lib/six/updater-app.rb +1 -1
- data/lib/six/updater.rb +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
data/lib/six/updater-app.rb
CHANGED
@@ -9,7 +9,7 @@ module Six
|
|
9
9
|
if File.exist?(PID_FILE)
|
10
10
|
log.error "The program seems to be already running. Please wait/close the other application first."
|
11
11
|
log.info "If you believe this is in error, please delete #{PID_FILE}"
|
12
|
-
sleep
|
12
|
+
sleep 15
|
13
13
|
Process.exit
|
14
14
|
end
|
15
15
|
File.open(PID_FILE, 'w') {|f| f.puts Process.pid}
|
data/lib/six/updater.rb
CHANGED