Commit 6e13cca2 6e13cca21d0f1cd082f9b7f3981965a7afba45b7 by Nicolas Perriault

fixes #242 - fixed ruby version of casperjs executable

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