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.
```
This commit is contained in:
Amio • 晋晓炜 2016-07-16 03:43:50 +08:00 committed by Guillermo Rauch
parent a4b039e870
commit 2b38e0d84d

View file

@ -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.