setup-terraform/wrapper/lib/terraform-bin.js
Matthew Sanabria cd5e05ffbf Initial commit
2020-04-25 19:46:30 -04:00

9 lines
305 B
JavaScript

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);
})();