You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [[ "${VERSION_BUMP}" == "false" && -n "${uncommitted_changes}" ]]; then
41
43
echo "Error: Changelog should only be updated alongside a version bump. Please restore the changelog."
42
44
exit 1
43
45
fi
44
46
45
-
if [[ "${VERSION_BUMP}" == "true" && -z "${uncommitted_changes}" ]]; then
47
+
if [[ "${VERSION_BUMP}" == "true" && -n "${diff_changelog}" ]]; then
46
48
echo "Error: Changelog must be updated alongside a version bump. Please run 'npm run gen-ipa-changelog' from the ipa directory and commit the changes."
0 commit comments