Skip to content

Commit

Permalink
Version 204
Browse files Browse the repository at this point in the history
  • Loading branch information
pookjw committed Oct 4, 2017
1 parent 82c6c37 commit c6a7675
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions NightPatch.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
# NightPatch

TOOL_VERSION=203
TOOL_VERSION=204
TOOL_BUILD=stable

function showHelpMessage(){
Expand Down Expand Up @@ -113,10 +113,6 @@ function revertSystem(){
}

function fixSystem(){
if [[ ! -d "$("xcode-select" -p)" ]]; then
echo "\033[1;31mERROR : Requires Command Line Tool.\033[0m Enter 'xcode-select --install' command to install this."
quitTool 1
fi
if [[ ! -d /usr/local/Cellar/xz ]]; then
showLines "*"
echo "\033[1;31mERROR : Requires lzma.\033[0m"
Expand Down Expand Up @@ -274,6 +270,10 @@ function checkSystem(){
echo "See http://apple.stackexchange.com/a/209530"
quitTool 1
fi
if [[ ! -d "$("xcode-select" -p)" ]]; then
echo "\033[1;31mERROR : Requires Command Line Tool.\033[0m Enter 'xcode-select --install' command to install this."
quitTool 1
fi
}

function checkRoot(){
Expand Down

0 comments on commit c6a7675

Please sign in to comment.