refactor(ci): remove redundant log in edge publish

This commit is contained in:
Clark Du 2018-11-18 00:15:14 +00:00 committed by Pooya Parsa
parent 0da5227358
commit 92455a750f

View File

@ -2,9 +2,9 @@
set -e
for dir in packages/* distributions/* ; do
echo "$dir"
pushd $dir
# echo "$dir"
pushd $dir > /dev/null
$@
popd
popd > /dev/null
done