2020-01-01 19:22:19 -06:00
|
|
|
#!/bin/sh
|
|
|
|
|
set -
|
2020-02-18 10:48:10 +01:00
|
|
|
mkdir -p Contents/Resources/IPMIView/Contents/Home/bin
|
2020-04-06 13:39:52 +02:00
|
|
|
tar -zxvf ~/Downloads/IPMIView*.tar.gz --strip=1 -C ./Contents/Resources/IPMIView/. ||
|
|
|
|
|
tar -xvf ~/Downloads/IPMIView*.tar --strip=1 -C ./Contents/Resources/IPMIView/. ||
|
|
|
|
|
{ echo "Something went wrong, check download of IPMIView archive" && exit 1; }
|
2020-02-18 10:48:10 +01:00
|
|
|
ln -s /usr/bin/java Contents/Resources/IPMIView/Contents/Home/bin/java
|
|
|
|
|
cd ..
|
|
|
|
|
rsync -arv --exclude=.git --exclude=Contents/Resources/IPMIView/jre IPMIView.app ~/Applications
|