Skip to content

Commit bdae375

Browse files
committed
* Use unix-style paths for WORKSPACE files
1 parent 0af7877 commit bdae375

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

buckaroo/InstallCommand.fs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,9 @@ let rec packageInstallPath (parents : PackageIdentifier list) (package : Package
106106
| PackageIdentifier.BitBucket x -> ("bitbucket", x.Owner, x.Project)
107107
| PackageIdentifier.GitLab x -> ("gitlab", combinePaths x.Groups, x.Project)
108108
| PackageIdentifier.Adhoc x -> ("adhoc", x.Owner, x.Project)
109-
Path.Combine(".", Constants.PackagesDirectory, prefix, owner, project)
109+
String.Join ("/", [ Constants.PackagesDirectory; prefix; owner; project ])
110110
| head::tail ->
111-
Path.Combine(packageInstallPath tail head, packageInstallPath [] package)
112-
|> Paths.normalize
113-
111+
String.Join ("/", [ packageInstallPath tail head; packageInstallPath [] package ])
114112

115113
let getReceiptPath installPath = installPath + ".receipt.toml"
116114

0 commit comments

Comments
 (0)