Update clone-all

Regression from #11
This commit is contained in:
Ryan Hutchison 2017-02-21 19:52:18 -05:00 committed by Ryan Hutchison
parent 42216a1256
commit 197e0c77ed
1 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,6 @@ else
username=$1
fi
for p in $(cat demo/plugins.txt | perl -pe s/:.+//g | grep -E 'workflow-|pipeline-' | grep -v 'pipeline-rest-api' | grep -v 'workflow-aggregator'); do
for p in $(cat demo/plugins.txt | awk -F ':' '{print $2}' | grep -E 'workflow-|pipeline-' | grep -v 'pipeline-rest-api' | grep -v 'workflow-aggregator'); do
git clone git@github.com:$username/$p-plugin.git ../$p-plugin
done