From cba388bb653400bae262aa89483e4a8aaa74aecf Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Wed, 19 Aug 2015 10:09:55 -0700 Subject: [PATCH] build(publish): uncomment "pub publish" section in pub_publish.sh it seems that this got commented out by accident in the past --- scripts/publish/pub_publish.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/publish/pub_publish.sh b/scripts/publish/pub_publish.sh index 8ac78d883d..404d2673b1 100755 --- a/scripts/publish/pub_publish.sh +++ b/scripts/publish/pub_publish.sh @@ -33,9 +33,9 @@ function publishModule { node scripts/publish/pubspec_cleaner.js --pubspec-file=$PUBLISH_DIR/pubspec.yaml - #if [[ "$DRY_RUN" == "false" ]]; then - # (cd $PUBLISH_DIR && pub publish -f) - #fi; + if [[ "$DRY_RUN" == "false" ]]; then + (cd $PUBLISH_DIR && pub publish -f) + fi; } publishModule angular2