Split parameter

This commit is contained in:
Thorrak 2021-04-23 10:11:44 -04:00
parent 41bd5b12bd
commit 63dffdd9f8

View File

@ -4,7 +4,7 @@ const fs = require('fs');
try {
const composeFile = core.getInput('compose-file');
const downOptions = core.getInput('down-options');
const downOptions = core.getInput('down-options').split(" ");
if (!fs.existsSync(composeFile)) {
console.log(`${composeFile} not exists`);