summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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