Browse Source

Merge pull request #203 from passcod/master

`linkapps` doesn't work with .app that have spaces in them
Paul Hinze 12 years ago
parent
commit
1fa072d9ec
  1. 2
      lib/cask/app_linker.rb

2
lib/cask/app_linker.rb

@ -31,7 +31,7 @@ class Cask
ohai "It seems there is already an app at #{app_path}; not linking."
return
end
`ln -s #{app} #{app_path}`
`ln -s "#{app}" "#{app_path}"`
end
end
end

Loading…
Cancel
Save