Skip to content

Commit 9ad105e

Browse files
committed
Fix namespacing issue in rdf CLI.
1 parent bcbc69c commit 9ad105e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

bin/rdf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env ruby
2-
$:.unshift(File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib')))
2+
$:.unshift(File.expand_path("../../lib", __FILE__))
33
require 'rubygems'
4+
require 'rdf'
45

56
options = RDF::CLI.options(ARGV)
67

0 commit comments

Comments
 (0)