about summary refs log tree commit homepage
path: root/bin/dtas-tl
diff options
context:
space:
mode:
Diffstat (limited to 'bin/dtas-tl')
-rwxr-xr-xbin/dtas-tl4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/dtas-tl b/bin/dtas-tl
index 6214ca9..6963108 100755
--- a/bin/dtas-tl
+++ b/bin/dtas-tl
@@ -31,7 +31,7 @@ when "clear"
 when "addhead"
   ARGV.shift
   ARGV.reverse.each do |path|
-    path = File.expand_path(path.b)
+    path = File.expand_path(path)
     res = c.req(%W(tl add #{path}))
     puts "#{path} #{res}"
   end
@@ -40,7 +40,7 @@ when "addtail"
   track_ids = get_track_ids(c)
   last_id = track_ids.pop
   ARGV.each do |path|
-    path = File.expand_path(path.b)
+    path = File.expand_path(path)
     req = %W(tl add #{path})
     req << last_id.to_s if last_id
     res = c.req(req)