diff options
author | hut <hut@lavabit.com> | 2009-06-12 19:20:08 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-06-12 19:20:08 +0200 |
commit | 18deedbcb0fd611038c0c4db9b5c748941f75c29 (patch) | |
tree | f43b7bc80217b5d12816f2e24d9ac35f1557d2bf | |
parent | ccd1fe0ec9a3a05cf4f5016ca7732837dc51e33e (diff) | |
download | ranger-18deedbcb0fd611038c0c4db9b5c748941f75c29.tar.gz |
small changes
-rw-r--r-- | code/scheduler.rb | 4 | ||||
-rwxr-xr-x | ranger.rb | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/code/scheduler.rb b/code/scheduler.rb index 2a0f0a21..e35f28d6 100644 --- a/code/scheduler.rb +++ b/code/scheduler.rb @@ -51,12 +51,12 @@ module Scheduler while dir = @scheduled.shift dir.refresh(true) dir.resize - force_update end + force_update end def force_update - Process.kill( UPDATE_SIGNAL, PID ) + Process.kill( UPDATE_SIGNAL, Process.pid ) end end diff --git a/ranger.rb b/ranger.rb index 42a7f88e..472f02ae 100755 --- a/ranger.rb +++ b/ranger.rb @@ -6,8 +6,6 @@ $: << MYDIR = File.dirname(Pathname.new(__FILE__).realpath) EVIL = false -PID = Process.pid - if ARGV.size > 0 case ARGV.first when '-k' |