From 12811dae95e14c92652eca0e8ce485eee14e7c96 Mon Sep 17 00:00:00 2001 From: tobil4sk Date: Sat, 7 Sep 2024 11:53:26 +0100 Subject: [PATCH] Add CYGWIN_ROOT_MINGW_BIN constant --- packages/setup-ocaml/src/constants.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/setup-ocaml/src/constants.ts b/packages/setup-ocaml/src/constants.ts index 3886f9cb..8ae34433 100644 --- a/packages/setup-ocaml/src/constants.ts +++ b/packages/setup-ocaml/src/constants.ts @@ -60,6 +60,8 @@ export const CYGWIN_ROOT = path.join("D:", "cygwin"); export const CYGWIN_ROOT_BIN = path.join(CYGWIN_ROOT, "bin"); +export const CYGWIN_ROOT_MINGW_BIN = path.join(CYGWIN_ROOT, "usr", "x86_64-w64-mingw32", "bin"); + export const DUNE_CACHE_ROOT = (() => { const homeDir = os.homedir(); if (PLATFORM === "windows") {