Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
Removed plugin deps in /scripts/deps.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
tiffanyfay committed Nov 18, 2015
1 parent c768445 commit 986db7d
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions scripts/deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,27 +25,6 @@ ctrl_c()
}
trap ctrl_c SIGINT

declare -a TYPES=(collector publisher)

function loadDeps() {
cd $z
echo "Restoring deps for $z"
godep restore
cd ..
}

function checkPluginType() {
cd plugin/$1
for z in *;
do
echo "Checking $z for deps"
if [ -d "$z/Godeps" ]; then
loadDeps $z
fi
done
cd ../..
}

# First load pulse deps
echo "Checking pulse root for deps"
godep restore
Expand All @@ -60,9 +39,3 @@ godep restore
cd ../../


# Next loop over all plugin types looking for a Godeps dir and loading
for type in ${TYPES[*]}
do
checkPluginType $type
done

0 comments on commit 986db7d

Please sign in to comment.