We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d77388d + 6ca709a commit 88d5c0eCopy full SHA for 88d5c0e
lib/commands/plugin/build-plugin.ts
@@ -1,6 +1,7 @@
1
import { EOL } from "os";
2
import * as path from "path";
3
import * as constants from "../../constants";
4
+import * as temp from "temp";
5
export class BuildPluginCommand implements ICommand {
6
public allowedParameters: ICommandParameter[] = [];
7
public pluginProjectPath: string;
@@ -28,7 +29,8 @@ export class BuildPluginCommand implements ICommand {
28
29
}
30
31
- const tempAndroidProject = path.join(platformsAndroidPath, "android-project");
32
+ temp.track();
33
+ const tempAndroidProject = temp.mkdirSync("android-project");
34
35
const options: IBuildOptions = {
36
aarOutputDir: platformsAndroidPath,
0 commit comments