mirror of
https://github.com/android-actions/setup-android
synced 2024-11-22 05:29:34 -08:00
Comments about mkdir/rmdir
This commit is contained in:
parent
910b2809b6
commit
da1ab05e31
1 changed files with 4 additions and 2 deletions
|
@ -117,12 +117,14 @@ async function installSdkManager(): Promise<string> {
|
|||
CMDLINE_TOOLS_VERSION
|
||||
)
|
||||
|
||||
// Create parent directory
|
||||
fs.mkdirSync(path.dirname(desiredLocation), {recursive: true})
|
||||
// @TODO: use io.mv instead of fs-extra once following issue is resolved:
|
||||
// https://github.com/actions/toolkit/issues/706
|
||||
|
||||
// Make sure we don't have leftover target directory (happens sometimes...)
|
||||
if (fs.existsSync(desiredLocation)) fse.removeSync(desiredLocation)
|
||||
|
||||
// @TODO: use io.mv instead of fs-extra.moveSync once following issue is resolved:
|
||||
// https://github.com/actions/toolkit/issues/706
|
||||
fse.moveSync(
|
||||
path.join(cmdlineToolsExtractedLocation, 'cmdline-tools'),
|
||||
desiredLocation
|
||||
|
|
Loading…
Reference in a new issue