Skip to content

Commit

Permalink
get newer environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesabarnes committed Oct 30, 2019
1 parent 802a975 commit 4d2e2ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions version.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
const fs = require('fs');
const path = require('path');
const chalk = require('chalk');
const JenkinsBuildNumber = process.argv['ji'] || 'UNKNOWN';
const CommitHash = process.argv['gi'] || 'UNKNOWN';
const JenkinsBuildNumber = process.argv['BUILD_NUMBER'] || 'UNKNOWN';
const CommitHash = process.argv['GIT_COMMIT'] || 'UNKNOWN';
const now = new Date();

let data = `
Expand Down

0 comments on commit 4d2e2ae

Please sign in to comment.