From 3a6264939e238fe0b1afa69aa12f263f65b4f5a8 Mon Sep 17 00:00:00 2001 From: richdex14 Date: Fri, 8 Sep 2017 11:34:04 -0600 Subject: [PATCH] Update install.sh to configure `bower` to allow usage under the root account, such as on single user systems such as our own. --- install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install.sh b/install.sh index 0b32a45..aad12e6 100644 --- a/install.sh +++ b/install.sh @@ -101,6 +101,8 @@ install_walnut # Install bower, some systems may be missing it, and it is a dependency /opt/walnut/bin/npm install -g bower +touch /.bowerrc +echo '{ "allow_root": true }' > /.bowerrc # Restore PATH to original value export PATH=$old_PATH