Skip to content

Commit 0d42bcd

Browse files
committed
THanks
1 parent 24a05de commit 0d42bcd

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -876,7 +876,7 @@ class Applesign {
876876
}
877877
}
878878

879-
async unzipIPA(file: string, workdir: string) {
879+
async unzipIPA(file: string, workdir: string): Promise<void> {
880880
fchk(arguments, ["string", "string"]);
881881
if (!file) {
882882
throw new Error("No input file specified");
@@ -886,7 +886,7 @@ class Applesign {
886886
}
887887
await this.cleanup();
888888
this.events.emit("message", "Unzipping " + file);
889-
return tools.unzip(file, workdir);
889+
await tools.unzip(file, workdir);
890890
}
891891

892892
/* Event Wrapper API with cb support */

lib/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
const version = "5.0.1";
1+
const version = "6.0.0";
22
export default version;

0 commit comments

Comments
 (0)