Skip to content

Commit

Permalink
Fix: only link src folder in path resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
ysbaddaden committed Jun 3, 2015
1 parent 3d34eb0 commit b0a9d6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resolvers/path.cr
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module Shards
def install(version = nil)
Shards.logger.info "Using #{dependency.name} (#{local_path})"
cleanup_install_directory
File.symlink(local_path, install_path)
File.symlink(File.join(local_path, "src"), install_path)
end
end

Expand Down

0 comments on commit b0a9d6e

Please sign in to comment.