diff options
Diffstat (limited to 'src/install/repository.zig')
-rw-r--r-- | src/install/repository.zig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/install/repository.zig b/src/install/repository.zig index d53fca8d5..f6c663bec 100644 --- a/src/install/repository.zig +++ b/src/install/repository.zig @@ -99,6 +99,19 @@ pub const Repository = extern struct { return buf[0..i]; } + pub fn getURLForClone(this: Repository, lockfile: *Lockfile, buf: *[bun.MAX_PATH_BYTES]u8) []u8 { + var url = this.getURL(lockfile, buf); + + // replace ':' with '/' if it exists to make a valid url + if (strings.lastIndexOfChar(url, ':')) |j| { + if (url[j + 1] != '/') { + url[j] = '/'; + } + } + + return url; + } + pub fn getCacheDirectoryForGitHub(this: Repository, manager: *PackageManager, buf: *[bun.MAX_PATH_BYTES]u8) ![]u8 { var url_buf: [bun.MAX_PATH_BYTES]u8 = undefined; const url = this.getGitHubURL(manager.lockfile, &url_buf); |