From e62cdce37fe3b53ab05b3d95a1458eb94fe05815 Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Wed, 26 Feb 2014 00:58:50 -0700 Subject: [PATCH] added echo statement to print when S3 deployment is starting --- pkg/plugin/publish/s3.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/plugin/publish/s3.go b/pkg/plugin/publish/s3.go index 079be15c0..167a29181 100644 --- a/pkg/plugin/publish/s3.go +++ b/pkg/plugin/publish/s3.go @@ -59,6 +59,9 @@ func (s *S3) Write(f *buildfile.Buildfile) { return } + // debugging purposes so we can see if / where something is failing + f.WriteCmdSilent("echo 'publishing to Amazon S3 ...'") + // install the AWS cli using PIP f.WriteCmdSilent("[ -f /usr/bin/sudo ] || pip install awscli 1> /dev/null 2> /dev/null") f.WriteCmdSilent("[ -f /usr/bin/sudo ] && sudo pip install awscli 1> /dev/null 2> /dev/null")