Skip to content

Commit

Permalink
fix: use proper config variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
filipgolonka committed Aug 8, 2019
1 parent b13ca84 commit 36b0c99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/heroin.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = function (arg, options) {
options = options || {};
var log = require('./logger')(options);
var clock = options.clock || util.clock;
var skipActions = options.skipConfigs || [];
var skipActions = options.skipActions || [];

if (!arg) {
throw new Error('Please set env var for HEROKU_API_TOKEN or specify a client library');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "heroin-js",
"version": "1.22.0",
"version": "1.22.1",
"description": "Heroku Infrastructure As A Code",
"main": "lib/heroin.js",
"repository": "git@github.com:Schibsted-Tech-Polska/HeroIn.git",
Expand Down

0 comments on commit 36b0c99

Please sign in to comment.