Explorar el Código

fix plist file name

master
Jonathan Cobb hace 4 años
padre
commit
ead1887532
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      bubble_release.sh

+ 2
- 1
bubble_release.sh Ver fichero

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

function platform_dist_zip {
BUILD_DIR="${1}"
PLIST_FILE="com.bubble-vpn.flexrouter.plist"
case "$(uname -a | awk '{print $1}')" in
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
}


Cargando…
Cancelar
Guardar