Skip to content

Commit

Permalink
Cleanup constants
Browse files Browse the repository at this point in the history
Signed-off-by: Sora Morimoto <[email protected]>
  • Loading branch information
smorimoto committed Jan 29, 2025
1 parent 809f121 commit 606e551
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
6 changes: 2 additions & 4 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions dist/post/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions packages/setup-ocaml/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,9 @@ const OCAML_COMPILER = core.getInput("ocaml-compiler", { required: true });

export const OPAM_DISABLE_SANDBOXING =
// [TODO] unlock this once sandboxing is supported on Windows
PLATFORM === "windows"
? true
: core.getBooleanInput("opam-disable-sandboxing");
PLATFORM !== "windows" && core.getBooleanInput("opam-disable-sandboxing");

export const OPAM_LOCAL_PACKAGES = core.getInput("opam-local-packages", {});
export const OPAM_LOCAL_PACKAGES = core.getInput("opam-local-packages");

export const OPAM_PIN = core.getBooleanInput("opam-pin");

Expand Down

0 comments on commit 606e551

Please sign in to comment.