From 2b38e0d84d16b9a2f96eb242aa85992c9f76232f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amio=20=E2=80=A2=20=E6=99=8B=E6=99=93=E7=82=9C?= Date: Sat, 16 Jul 2016 03:43:50 +0800 Subject: [PATCH] Add missing shebang to scripts/install.sh (#85) Fix the error when executing in some none-bash shell(eg. fish): ``` Failed to execute process './scripts/install.sh'. Reason: exec: Exec format error The file './scripts/install.sh' is marked as an executable but could not be run by the operating system. ``` --- scripts/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install.sh b/scripts/install.sh index 5b7e0f17..75323c0c 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -1,3 +1,4 @@ +#!/usr/bin/env bash # Electron's version. export npm_config_target=1.2.3 # The architecture of Electron, can be ia32 or x64.