mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-22 17:09:08 +08:00
revert shell change
This commit is contained in:
parent
d155e954a1
commit
f1e183e98c
@ -140,8 +140,7 @@ export async function rmRF(inputPath: string): Promise<void> {
|
|||||||
cmdPath,
|
cmdPath,
|
||||||
['/s', '/c', 'rd', '/s', '/q', '"%inputPath%"'],
|
['/s', '/c', 'rd', '/s', '/q', '"%inputPath%"'],
|
||||||
{
|
{
|
||||||
env: {inputPath},
|
env: {inputPath}
|
||||||
shell: true
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
@ -149,8 +148,7 @@ export async function rmRF(inputPath: string): Promise<void> {
|
|||||||
cmdPath,
|
cmdPath,
|
||||||
['/s', '/c', 'del', '/f', '/q', '/a', '"%inputPath%"'],
|
['/s', '/c', 'del', '/f', '/q', '/a', '"%inputPath%"'],
|
||||||
{
|
{
|
||||||
env: {inputPath},
|
env: {inputPath}
|
||||||
shell: true
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user