refactor(ci): remove redundant log in edge publish

This commit is contained in:
Clark Du 2018-11-18 00:15:14 +00:00
parent 4240aac9d0
commit 35d08c32c1
1 changed files with 3 additions and 3 deletions

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