Skip to content

Commit 898940c

Browse files
committed
Fix bootstrap.sh: Add apt install for nw.js
1 parent d13143c commit 898940c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

rpi/bootstrap.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
set -eu
3+
set -Eeuo pipefail
44

55
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
66

@@ -55,6 +55,7 @@ function install_nwjs() {
5555
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys DB348A58A292E9BC
5656
echo "deb https://repo.netsyms.com/apt main main" | sudo tee /etc/apt/sources.list.d/netsyms.list
5757
sudo apt update
58+
sudo apt install nw.js-normal
5859
mkdir -p ~/nwjs
5960
cp "${SCRIPT_DIR}/package.json" ~/nwjs
6061
}

0 commit comments

Comments
 (0)