Skip to content

Commit 9d6b86d

Browse files
committed
chore: fix dist folder being deleted
1 parent 6499904 commit 9d6b86d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test-app/runtests.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ def isWinOs = System.properties['os.name'].toLowerCase().contains('windows')
22
def runOnDevice = project.hasProperty("runOnDevice");
33
def runOnDeviceOrEmulator = runOnDevice ? "-d" : "-e";
44

5-
task deleteDist(type: Delete) {
6-
doFirst {
7-
delete "$rootDir/dist"
8-
}
9-
}
5+
// task deleteDist(type: Delete) {
6+
// doFirst {
7+
// delete "$rootDir/dist"
8+
// }
9+
// }
1010

1111
task waitForEmulatorToStart(type: Exec) {
1212
doFirst {
@@ -97,7 +97,7 @@ task deleteRootLevelResult(type: Delete) {
9797
}
9898

9999

100-
waitForEmulatorToStart.dependsOn(deleteDist)
100+
// waitForEmulatorToStart.dependsOn(deleteDist)
101101
runAdbAsRoot.dependsOn(waitForEmulatorToStart)
102102
deletePreviousResultXml.dependsOn(runAdbAsRoot)
103103
installApk.dependsOn(deletePreviousResultXml)

0 commit comments

Comments
 (0)