Skip to content

Commit b0a9d6e

Browse files
committed
Fix: only link src folder in path resolver
1 parent 3d34eb0 commit b0a9d6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/resolvers/path.cr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module Shards
2727
def install(version = nil)
2828
Shards.logger.info "Using #{dependency.name} (#{local_path})"
2929
cleanup_install_directory
30-
File.symlink(local_path, install_path)
30+
File.symlink(File.join(local_path, "src"), install_path)
3131
end
3232
end
3333

0 commit comments

Comments
 (0)