Browse Source

fix plist file name

master
Jonathan Cobb 4 years ago
parent
commit
ead1887532
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      bubble_release.sh

+ 2
- 1
bubble_release.sh View File

@@ -12,9 +12,10 @@ function die {


function platform_dist_zip { function platform_dist_zip {
BUILD_DIR="${1}" BUILD_DIR="${1}"
PLIST_FILE="com.bubble-vpn.flexrouter.plist"
case "$(uname -a | awk '{print $1}')" in case "$(uname -a | awk '{print $1}')" in
Darwin*) Darwin*)
cp ${THISDIR}/macos/flexrouter.plist ${BUILD_DIR} || die "Error copying macos files to BUILD_DIR: ${BUILD_DIR}"
cp ${THISDIR}/macos/${PLIST_FILE} ${BUILD_DIR} || die "Error copying macos files to BUILD_DIR: ${BUILD_DIR}"
;; ;;
esac esac
} }


Loading…
Cancel
Save