We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36220a4 commit 20010a9Copy full SHA for 20010a9
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "react-native-update-cli",
3
- "version": "1.43.0",
+ "version": "1.43.1",
4
"description": "command line tool for react-native-update (remote updates for react native)",
5
"main": "index.js",
6
"bin": {
src/utils/git.ts
@@ -41,7 +41,7 @@ export async function getCommitInfo(): Promise<CommitInfo | undefined> {
41
message: commit.message,
42
author: commit.author.name || commit.committer.name,
43
timestamp: String(commit.committer.timestamp),
44
- origin: origin.url,
+ origin: origin?.url,
45
};
46
} catch (error) {
47
console.error(error);
0 commit comments