Skip to content

Commit

Permalink
Bug fix (#234)
Browse files Browse the repository at this point in the history
* Update with relevant details

* Delete apk source

* Bump metaplex and solana web3 deps

* Add process exit just to be sure that the CLI doesn't hang needlessly

* Revert "Bump metaplex and solana web3 deps"

This reverts commit f3e6ac6.

* Make things work right

* Address ticket #230 - whenever there is an error return a non-zero exit code

* More async/await fixes

* Yaml multiline long desc support should be in place

* Improve PublishDetails.ts AAPT2 comment

* Remove process exit that kills certain tasks prematurely

* Fix a small bug

---------

Co-authored-by: creativedrewy <Andrew Watson [email protected]>
Co-authored-by: Raymond Jacobson <[email protected]>
  • Loading branch information
3 people authored Aug 9, 2023
1 parent cd2695a commit 6cfdbbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/config/PublishDetails.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ const getAndroidDetails = async (
locales: localeArray
};
} catch (e) {
throw new Error(`There was an error parsing your APK. Please ensure you have installed Java and provided a valid Android tools directory containing AAPT2.\n" + e);
throw new Error(`There was an error parsing your APK. Please ensure you have installed Java and provided a valid Android tools directory containing AAPT2.\n` + e);
}
};

Expand Down

0 comments on commit 6cfdbbb

Please sign in to comment.