aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtool/checksum.rb2
-rw-r--r--tool/generic_erb.rb2
-rwxr-xr-xtool/id2token.rb2
-rw-r--r--tool/lib/vpath.rb (renamed from tool/vpath.rb)0
4 files changed, 3 insertions, 3 deletions
diff --git a/tool/checksum.rb b/tool/checksum.rb
index 3b41aedcfc..bcc60ee14a 100755
--- a/tool/checksum.rb
+++ b/tool/checksum.rb
@@ -1,6 +1,6 @@
#!ruby
-require_relative 'vpath'
+require_relative 'lib/vpath'
class Checksum
def initialize(vpath)
diff --git a/tool/generic_erb.rb b/tool/generic_erb.rb
index 3184cbb9f8..eaafe0c7a5 100644
--- a/tool/generic_erb.rb
+++ b/tool/generic_erb.rb
@@ -6,7 +6,7 @@
require 'erb'
require 'optparse'
$:.unshift(File.dirname(__FILE__))
-require 'vpath'
+require_relative 'lib/vpath'
require_relative 'lib/colorize'
vpath = VPath.new
diff --git a/tool/id2token.rb b/tool/id2token.rb
index 706154ecfb..9267126e8f 100755
--- a/tool/id2token.rb
+++ b/tool/id2token.rb
@@ -6,7 +6,7 @@
BEGIN {
require 'optparse'
$:.unshift(File.dirname(__FILE__))
- require 'vpath'
+ require_relative 'lib/vpath'
vpath = VPath.new
header = nil
diff --git a/tool/vpath.rb b/tool/lib/vpath.rb
index 48ab148405..48ab148405 100644
--- a/tool/vpath.rb
+++ b/tool/lib/vpath.rb