From dad5904d3f04822e022b3e9795a0cddf03313e47 Mon Sep 17 00:00:00 2001 From: axeloz Date: Wed, 22 Jan 2020 14:58:08 +0100 Subject: [PATCH] Bugfix --- cookbooks/lamp/recipes/default.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbooks/lamp/recipes/default.rb b/cookbooks/lamp/recipes/default.rb index 624862b..6d1f0bd 100644 --- a/cookbooks/lamp/recipes/default.rb +++ b/cookbooks/lamp/recipes/default.rb @@ -247,7 +247,7 @@ end ##################################### execute 'install_browsersync' do user 'root' - command 'npm install -g browser-sync' + command 'yarn global add browser-sync' creates '/usr/bin/browser-sync' end @@ -257,7 +257,7 @@ end ##################################### execute 'install_bower' do user 'root' - command 'npm install -g bower' + command 'yarn global add bower' creates '/usr/bin/bower' end