Add fixes for High Sierra
This commit is contained in:
parent
b3e7b55635
commit
695bf03bcb
3 changed files with 11 additions and 3 deletions
|
|
@ -6,11 +6,11 @@
|
|||
<array>
|
||||
<dict>
|
||||
<key>BundlePath</key>
|
||||
<string>/Applications/iTerm-2.app</string>
|
||||
<string>/Applications/Utilities/Terminal.app</string>
|
||||
<key>DescriptionKey</key>
|
||||
<string>Hardware Diagnostics</string>
|
||||
<key>Path</key>
|
||||
<string>/Applications/iTerm-2.app/Contents/MacOS/iTerm2</string>
|
||||
<string>/Applications/Utilities/Terminal.app/Contents/MacOS/Terminal</string>
|
||||
<key>TitleKey</key>
|
||||
<string>WizardKit: Hardware Diagnostics</string>
|
||||
</dict>
|
||||
|
|
|
|||
|
|
@ -43,7 +43,6 @@ if [[ "${OS_VERSION:0:5}" == "10.11" ]]; then
|
|||
# TODO: Maybe?
|
||||
true
|
||||
elif [[ "${OS_VERSION:0:5}" == "10.13" ]]; then
|
||||
# TODO: Add colordiff
|
||||
brew install --build-from-source \
|
||||
automake \
|
||||
lua \
|
||||
|
|
@ -69,7 +68,9 @@ elif [[ "${OS_VERSION:0:5}" == "10.13" ]]; then
|
|||
watch
|
||||
brew install \
|
||||
cmatrix \
|
||||
colordiff \
|
||||
ddrescue \
|
||||
dropbear \
|
||||
speedtest-cli \
|
||||
tmux
|
||||
elif [[ "${OS_VERSION:0:5}" == "10.15" ]]; then
|
||||
|
|
@ -93,3 +94,8 @@ fi
|
|||
|
||||
# Python3 Packages
|
||||
pip3 install docopt mysql-connector NumPy psutil pylint pytz requests
|
||||
|
||||
git clone https://github.com/yuyichao/gnuplot-py gnuplot-py
|
||||
cd gnuplot-py
|
||||
git checkout 2c2218dc67
|
||||
python3 setup.py install
|
||||
|
|
|
|||
|
|
@ -103,6 +103,8 @@ if [[ "${OS_VERSION:3:2}" == "11" ]]; then
|
|||
cp -a /usr/bin/fgrep "${WK_PATH}/usr/bin"/
|
||||
cp -a /usr/bin/locale "${WK_PATH}/usr/bin"/
|
||||
rsync -aS /usr/share/locale/ "${WK_PATH}/usr/share/locale"/
|
||||
elif [[ "${OS_VERSION:3:2}" == "13" ]]; then
|
||||
cp -a /usr/lib/libexpat* "${WK_PATH}/usr/lib"/
|
||||
fi
|
||||
|
||||
# WizardKit
|
||||
|
|
|
|||
Loading…
Reference in a new issue