From 75006ce73b68aff8ee8d2bf82a613ba495e0319a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phan=20Kochen?= Date: Mon, 24 Aug 2020 19:53:28 +0200 Subject: [PATCH] Handle yarnPath with exec permissions --- src/yarn-project.nix.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yarn-project.nix.in b/src/yarn-project.nix.in index 259a632..f388b30 100644 --- a/src/yarn-project.nix.in +++ b/src/yarn-project.nix.in @@ -16,7 +16,7 @@ let # Defines the shell alias to run Yarn. yarn-alias = '' yarn() { - CI=1 "$NIX_YARN_PATH" "$@" + CI=1 node "$NIX_YARN_PATH" "$@" } '';