Skip to content

Instantly share code, notes, and snippets.

@Drzaln
Created February 4, 2025 03:57
Show Gist options
  • Select an option

  • Save Drzaln/2a81ff6f67b9d9b07868c42e3a1509a3 to your computer and use it in GitHub Desktop.

Select an option

Save Drzaln/2a81ff6f67b9d9b07868c42e3a1509a3 to your computer and use it in GitHub Desktop.
#!/bin/bash
PROJECT_DIR="PROJECT_NAME"
INFOPLIST_FILE="Info.plist"
INFOPLIST_DIR="${PROJECT_DIR}/${INFOPLIST_FILE}"
PACKAGE_VERSION=$(cat ../package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]')
# Update plist with new values
/usr/libexec/PlistBuddy -c "Set :CFBundleShortVersionString ${PACKAGE_VERSION#*v}" "${INFOPLIST_DIR}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment