about summary refs log tree commit homepage
path: root/bin/dtas-enq
diff options
context:
space:
mode:
Diffstat (limited to 'bin/dtas-enq')
-rwxr-xr-xbin/dtas-enq3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/dtas-enq b/bin/dtas-enq
index c18b684..4ab3c04 100755
--- a/bin/dtas-enq
+++ b/bin/dtas-enq
@@ -5,8 +5,7 @@ require 'dtas/unix_client'
 c = DTAS::UNIXClient.new
 
 ARGV.each do |path|
-  # Unix paths are encoding agnostic
-  path = File.expand_path(path.b)
+  path = File.expand_path(path)
   res = c.req_ok(%W(enq #{path}))
   puts "#{path} #{res}"
 end