From 0980d1fa99e60dace387d8afe6d8dc76a081dc57 Mon Sep 17 00:00:00 2001 From: MinRK Date: Thu, 21 Aug 2014 11:58:39 -0700 Subject: [PATCH] allow bower to be run as root because javascript is awesome! --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2eb8d879..19414f5d 100755 --- a/setup.py +++ b/setup.py @@ -116,7 +116,7 @@ class Bower(Command): pass def run(self): - check_call(['bower', 'install']) + check_call(['bower', 'install', '--allow-root']) self.distribution.data_files = get_data_files() def get_outputs(self):