Commit 6e13cca2 6e13cca21d0f1cd082f9b7f3981965a7afba45b7 by Nicolas Perriault

fixes #242 - fixed ruby version of casperjs executable

1 parent 40fe596d
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
4 4
5 def resolve(file_path) 5 def resolve(file_path)
6 while File.symlink?(file_path) do 6 while File.symlink?(file_path) do
7 file_path = File.dirname(file_path) + '/' + File.readlink(file_path) 7 file_path = File.readlink(file_path)
8 end 8 end
9 file_path 9 file_path
10 end 10 end
......