mirror of https://github.com/actions/toolkit
separate args
parent
b0ce9247be
commit
3406ce58d6
|
@ -138,7 +138,7 @@ export async function rmRF(inputPath: string): Promise<void> {
|
|||
if (await ioUtil.isDirectory(inputPath, true)) {
|
||||
result = childProcess.spawn(
|
||||
cmdPath,
|
||||
['/s', '/c', 'rd /s /q "%inputPath%"'],
|
||||
['/s', '/c', 'rd', '/s', '/q', '"%inputPath%"'],
|
||||
{
|
||||
env: {inputPath},
|
||||
shell: true
|
||||
|
@ -147,7 +147,7 @@ export async function rmRF(inputPath: string): Promise<void> {
|
|||
} else {
|
||||
result = childProcess.spawn(
|
||||
cmdPath,
|
||||
['/s', '/c', 'del /f /q /a "%inputPath%"'],
|
||||
['/s', '/c', 'del', '/f', '/q', '/a', '"%inputPath%"'],
|
||||
{
|
||||
env: {inputPath},
|
||||
shell: true
|
||||
|
|
Loading…
Reference in New Issue