1
0
Fork 0
mirror of https://github.com/dawidd6/action-ansible-playbook.git synced 2024-11-22 15:32:18 +00:00

main: replace all newlines

This commit is contained in:
Dawid Dziurla 2020-05-03 12:50:24 +02:00
parent 013642b2f2
commit c667c001c3
No known key found for this signature in database
GPG key ID: 7B6D8368172E9B0B

View file

@ -16,7 +16,7 @@ async function main() {
let cmd = ["ansible-playbook", playbook]
if (options) {
cmd.push(options.replace("\n", " "))
cmd.push(options.replace(/\n/g, " "))
}
if (directory) {