Skip to content

Commit 1c051ba

Browse files
committed
chore: update release script to include newly generated docs
update test debug logging again
1 parent d257adf commit 1c051ba

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

release.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,6 @@ rm -rf docs/
2525
git checkout gh-pages
2626
mv out/* docs/
2727
echo $VERSION >> _data/versions.csv
28-
git co -am "adding docs for v$VERSION"
28+
git add .
29+
git co -m "adding docs for v$VERSION"
2930
git push

test/repository.spec.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,9 @@ describe('Repository', function() {
140140

141141
it('should show repo contributors', function(done) {
142142
remoteRepo.getContributors(assertSuccessful(done, function(err, contributors) {
143+
if (!(contributors instanceof Array)) {
144+
console.log(contributors); // eslint-disable-line
145+
}
143146
expect(contributors).to.be.an.array();
144147
expect(contributors.length).to.be.above(1);
145148

0 commit comments

Comments
 (0)