From 9adfb3e3f41474bc6962cc802658250ddcc950f9 Mon Sep 17 00:00:00 2001 From: LAbyOne <63520775+LAbyOne@users.noreply.github.com> Date: Thu, 6 May 2021 14:32:24 +0200 Subject: [PATCH] Add files via upload --- .../CloverConfigPlistValidator/postinstall | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 CloverPackage/package/Scripts.templates/CloverConfigPlistValidator/postinstall diff --git a/CloverPackage/package/Scripts.templates/CloverConfigPlistValidator/postinstall b/CloverPackage/package/Scripts.templates/CloverConfigPlistValidator/postinstall new file mode 100644 index 000000000..731b28697 --- /dev/null +++ b/CloverPackage/package/Scripts.templates/CloverConfigPlistValidator/postinstall @@ -0,0 +1,31 @@ +#!/bin/bash + +echo "===============================================" +echo "CloverConfigPlistValidator Pre-Install Script" +echo "===============================================" + +#echo "DEBUG: $ 1 = Full path to the installation package the installer app is processing: " $1 +#echo "DEBUG: $ 2 = Full path to the installation destination: " $2 +#echo "DEBUG: $ 3 = Installation volume (mountpoint) to receive the payload: " $3 +#echo "DEBUG: $ 4 = Root directory for the system: " $4 + +echo "preinstall: Path to installer....... $1" +echo "preinstall: Path to destination..... $2" +echo "preinstall: Path to dest volume..... $3" +echo "preinstall: Root of system folder... $4" + +# If target volume root of current system then replace +# / with volume name. +if [ "$3" == "/" ]; then + DEST_VOL="/Volumes/"$( ls -1F /Volumes | sed -n 's:@$::p' ) +else + DEST_VOL="$3" +fi + +# --------------------------------------------- +# Fix chmod attributes +# --------------------------------------------- + +if [[ -d "${DEST_VOL}/Applications/CloverConfigPlistValidator" ]];then + chmod a+x "${DEST_VOL}/Applications/CloverConfigPlistValidator/CloverConfigPlistValidator" +fi