mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-27 12:15:19 +01:00
Delete postinstall
This commit is contained in:
parent
7ad35fb6e7
commit
edb06902ca
@ -1,34 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo "==============================================="
|
||||
echo "CloverConfigPlistValidator Post-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 [ "$2" == "/" ]; then
|
||||
DEST_VOL="/Volumes/"$( ls -1F /Volumes | sed -n 's:@$::p' )
|
||||
else
|
||||
DEST_VOL="$2"
|
||||
fi
|
||||
|
||||
# ---------------------------------------------
|
||||
# Fix chmod attributes
|
||||
# ---------------------------------------------
|
||||
|
||||
if [[ -d /Applications/CloverUtils/CloverConfigPlistValidator ]];then
|
||||
chmod a+x /Applications/CloverUtils/CloverConfigPlistValidator/CloverConfigPlistValidator
|
||||
mv -f /Applications/CloverUtils $HOME/src/
|
||||
fi
|
||||
|
||||
chown -R $(whoami) $HOME/src/CloverUtils
|
Loading…
Reference in New Issue
Block a user