We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24a05de commit 0d42bcdCopy full SHA for 0d42bcd
2 files changed
index.ts
@@ -876,7 +876,7 @@ class Applesign {
876
}
877
878
879
- async unzipIPA(file: string, workdir: string) {
+ async unzipIPA(file: string, workdir: string): Promise<void> {
880
fchk(arguments, ["string", "string"]);
881
if (!file) {
882
throw new Error("No input file specified");
@@ -886,7 +886,7 @@ class Applesign {
886
887
await this.cleanup();
888
this.events.emit("message", "Unzipping " + file);
889
- return tools.unzip(file, workdir);
+ await tools.unzip(file, workdir);
890
891
892
/* Event Wrapper API with cb support */
lib/version.ts
@@ -1,2 +1,2 @@
1
-const version = "5.0.1";
+const version = "6.0.0";
2
export default version;
0 commit comments