additional output to understand what is happening
diff --git a/src/create-verify-archive.js b/src/create-verify-archive.js
index 5456cf9..8c02944 100644
--- a/src/create-verify-archive.js
+++ b/src/create-verify-archive.js
@@ -84,6 +84,7 @@
         }
 
         var tag = argv.tag || (yield gitutil.findMostRecentTag(repo.versionPrefix))[0];
+        console.log('Working with tag `' + tag + '`')
         if (!tag) {
             apputil.fatal('Could not find most recent tag. Try running with --tag');
         }
diff --git a/src/repoutil.js b/src/repoutil.js
index 829909e..874105c 100644
--- a/src/repoutil.js
+++ b/src/repoutil.js
@@ -502,6 +502,7 @@
             origPath = origPath + '/..';
         }
         var repoDir = getRepoDir(repo);
+        console.log('$ cd ' + repoDir)
         shelljs.cd(repoDir);
 
         if (shelljs.error()) {
@@ -521,6 +522,8 @@
     for (;;) {
         var value = path.basename(curPath);
         if (getRepoById(value)) {
+            console.log('Working with `' + value + '`');
+
             return value;
         }
         curPath = path.resolve(curPath, '..');