cleaning structure
This commit is contained in:
31
old code/tray/ant/apple/apple-preinstall.sh.in
Executable file
31
old code/tray/ant/apple/apple-preinstall.sh.in
Executable file
@@ -0,0 +1,31 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Halt on first error
|
||||
set -e
|
||||
|
||||
# Clear the log for writing
|
||||
> "${install.log}"
|
||||
|
||||
# Log helper
|
||||
dbg () {
|
||||
echo -e "[BASH] $(date -Iseconds)\n\t$1" >> "${install.log}" 2>&1
|
||||
}
|
||||
|
||||
# Get working directory
|
||||
dbg "Calculating working directory..."
|
||||
DIR=$(cd "$(dirname "$0")" && pwd)
|
||||
dbg "Using working directory $DIR"
|
||||
dbg "Switching to payload directory $DIR/payload/${project.name}.app/Contents/MacOS/"
|
||||
pushd "$DIR/payload/${project.name}.app/Contents/MacOS/" >> "${install.log}" 2>&1
|
||||
|
||||
# Offer to download Java if missing
|
||||
dbg "Checking for Java in payload directory..."
|
||||
if ! ./"${project.name}" --version >> "${install.log}" 2>&1; then
|
||||
dbg "Java was not found"
|
||||
osascript -e "tell app \"Installer\" to display dialog \"Java is required. Please install Java and try again.\""
|
||||
sudo -u "$USER" open "${java.download}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
dbg "Java was found in payload directory, running preinstall"
|
||||
./"${project.name}" preinstall >> "${install.log}" 2>&1
|
||||
Reference in New Issue
Block a user