setup-terraform/wrapper/lib/terraform-bin.js

10 lines
305 B
JavaScript
Raw Normal View History

2020-04-23 12:57:44 -04:00
const os = require('os');
const path = require('path');
module.exports = (() => {
// If we're on Windows, then the executable ends with .exe
const exeSuffix = os.platform().startsWith('win') ? '.exe' : '';
return [process.env.TERRAFORM_CLI_PATH, `terraform-bin${exeSuffix}`].join(path.sep);
})();