summaryrefslogtreecommitdiffstats
path: root/pkgs/development/tools/electron
diff options
context:
space:
mode:
authorjakobrs <jakobrs100@gmail.com>2020-02-17 16:50:21 +0100
committerGitHub <noreply@github.com>2020-02-17 10:50:21 -0500
commit35bae4f749eb45dd0dcbc7994af15da76bec752d (patch)
tree02179608014b50c758b57bc3f727f0e831938630 /pkgs/development/tools/electron
parentc91aade77fd5b98e2bf0d7c920c07b1a8abb4b2d (diff)
electron: correct casing of MacOS (#80362)
Diffstat (limited to 'pkgs/development/tools/electron')
-rw-r--r--pkgs/development/tools/electron/3.x.nix2
-rw-r--r--pkgs/development/tools/electron/generic.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/electron/3.x.nix b/pkgs/development/tools/electron/3.x.nix
index a902f279a49c..f66d1a57a047 100644
--- a/pkgs/development/tools/electron/3.x.nix
+++ b/pkgs/development/tools/electron/3.x.nix
@@ -69,7 +69,7 @@ let
unzip $src
mv Electron.app $out/Applications
mkdir -p $out/bin
- ln -s $out/Applications/Electron.app/Contents/MacOs/Electron $out/bin/electron
+ ln -s $out/Applications/Electron.app/Contents/MacOS/Electron $out/bin/electron
'';
};
in
diff --git a/pkgs/development/tools/electron/generic.nix b/pkgs/development/tools/electron/generic.nix
index b2ce076933dd..a06989ad2545 100644
--- a/pkgs/development/tools/electron/generic.nix
+++ b/pkgs/development/tools/electron/generic.nix
@@ -70,7 +70,7 @@ let
unzip $src
mv Electron.app $out/Applications
mkdir -p $out/bin
- ln -s $out/Applications/Electron.app/Contents/MacOs/Electron $out/bin/electron
+ ln -s $out/Applications/Electron.app/Contents/MacOS/Electron $out/bin/electron
'';
};
in