Skip to content

Commit 87fcd77

Browse files
committed
Fix tiny bug that prepped Android APK in series, not parallel
1 parent 9ab976e commit 87fcd77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interceptors/android/fetch-apk.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ async function cleanupOldApks(config: HtkConfig) {
112112

113113
export async function streamLatestApk(config: HtkConfig): Promise<stream.Readable> {
114114
const [latestApkRelease, localApk] = await Promise.all([
115-
await getLatestRelease(),
116-
await getLatestLocalApk(config)
115+
getLatestRelease(),
116+
getLatestLocalApk(config)
117117
]);
118118

119119
if (!localApk) {

0 commit comments

Comments
 (0)