From bdae37584772ced2ba485ab6921b4ca0c4471d34 Mon Sep 17 00:00:00 2001 From: njlr Date: Mon, 16 Sep 2019 18:51:41 +0100 Subject: [PATCH] * Use unix-style paths for WORKSPACE files --- buckaroo/InstallCommand.fs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/buckaroo/InstallCommand.fs b/buckaroo/InstallCommand.fs index 9a9349f..b3fd656 100644 --- a/buckaroo/InstallCommand.fs +++ b/buckaroo/InstallCommand.fs @@ -106,11 +106,9 @@ let rec packageInstallPath (parents : PackageIdentifier list) (package : Package | PackageIdentifier.BitBucket x -> ("bitbucket", x.Owner, x.Project) | PackageIdentifier.GitLab x -> ("gitlab", combinePaths x.Groups, x.Project) | PackageIdentifier.Adhoc x -> ("adhoc", x.Owner, x.Project) - Path.Combine(".", Constants.PackagesDirectory, prefix, owner, project) + String.Join ("/", [ Constants.PackagesDirectory; prefix; owner; project ]) | head::tail -> - Path.Combine(packageInstallPath tail head, packageInstallPath [] package) - |> Paths.normalize - + String.Join ("/", [ packageInstallPath tail head; packageInstallPath [] package ]) let getReceiptPath installPath = installPath + ".receipt.toml"