Skip to content

Commit

Permalink
added c++ 11 toolchain (for nodegit) to travis.yml and fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Kanaye committed Feb 1, 2017
1 parent f5c08e9 commit 8ff3e91
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@ before_script:
- sh -e /etc/init.d/xvfb start
after_success:
- grunt publish
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
4 changes: 2 additions & 2 deletions build/tasks/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ module.exports = function (grunt) {
{
callbacks: {
credentials: function () {
return Git.Cred.userpassPlainTextNew(gitUser, gitPassword);
return Git.Cred.userpassPlaintextNew(gitUser, gitPassword);
}
}
}
Expand All @@ -157,4 +157,4 @@ module.exports = function (grunt) {
done(false);
});
});
};
};

0 comments on commit 8ff3e91

Please sign in to comment.