mirror of
https://github.com/subosito/flutter-action.git
synced 2024-08-16 10:19:50 +02:00
fix: use join to comply with other os
This commit is contained in:
parent
6ebddd1b83
commit
9d3762c82e
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ export async function getFlutter(
|
|||
|
||||
core.exportVariable('FLUTTER_HOME', toolPath);
|
||||
core.addPath(path.join(toolPath, 'bin'));
|
||||
core.addPath(path.join(toolPath, 'bin/cache/dart-sdk/bin'));
|
||||
core.addPath(path.join(toolPath, 'bin', 'cache', 'dart-sdk', 'bin'));
|
||||
}
|
||||
|
||||
function osName(): string {
|
||||
|
|
Loading…
Reference in a new issue