mirror of
https://github.com/Mayccoll/Gogh.git
synced 2023-08-10 21:12:46 +03:00
Merge pull request #162 from phenonymous/master
Fix suggestions in #160
This commit is contained in:
commit
683bf20945
10
gogh.sh
10
gogh.sh
@ -62,8 +62,6 @@ declare -a THEMES=(
|
|||||||
'frontend-fun-forrest.sh'
|
'frontend-fun-forrest.sh'
|
||||||
'frontend-galaxy.sh'
|
'frontend-galaxy.sh'
|
||||||
'github.sh'
|
'github.sh'
|
||||||
'google-dark.sh'
|
|
||||||
'google-light.sh'
|
|
||||||
'gooey.sh'
|
'gooey.sh'
|
||||||
'grape.sh'
|
'grape.sh'
|
||||||
'grass.sh'
|
'grass.sh'
|
||||||
@ -183,6 +181,7 @@ declare -a THEMES=(
|
|||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
PROGRESS_URL="https://raw.githubusercontent.com/phenonymous/shell-progressbar/1.0/progress.sh"
|
||||||
|
|
||||||
capitalize() {
|
capitalize() {
|
||||||
local ARGUMENT=$1
|
local ARGUMENT=$1
|
||||||
@ -329,10 +328,11 @@ fi
|
|||||||
# | ::::::: Fancy progressbar for lengthy operations
|
# | ::::::: Fancy progressbar for lengthy operations
|
||||||
# |
|
# |
|
||||||
if [[ ${#OPTION[@]} -gt 5 ]]; then
|
if [[ ${#OPTION[@]} -gt 5 ]]; then
|
||||||
|
# Note: We use eval here because we want the functions to be available in this script
|
||||||
if [[ "$(uname)" = "Darwin" ]]; then
|
if [[ "$(uname)" = "Darwin" ]]; then
|
||||||
eval "$(curl -sLo- https://git.io/progressbar)" 2> /dev/null
|
eval "$(curl -so- ${PROGRESS_URL})" 2> /dev/null
|
||||||
else
|
else
|
||||||
eval "$(wget -qO- https://git.io/progressbar)" 2> /dev/null
|
eval "$(wget -qO- ${PROGRESS_URL})" 2> /dev/null
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -410,4 +410,6 @@ for OP in "${OPTION[@]#0}"; do
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
# If you skip || : and the command does not exist the script will exit with code 1
|
||||||
|
# this will always return exit code 0 if we got this far
|
||||||
command -v bar::stop > /dev/null && bar::stop || :
|
command -v bar::stop > /dev/null && bar::stop || :
|
||||||
|
@ -203,7 +203,9 @@ declare -a THEMES=(
|
|||||||
)
|
)
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
PROGRESS_URL="https://raw.githubusercontent.com/phenonymous/shell-progressbar/1.0/progress.sh"
|
||||||
|
|
||||||
capitalize() {
|
capitalize() {
|
||||||
local ARGUMENT=$1
|
local ARGUMENT=$1
|
||||||
@ -243,10 +245,11 @@ remove_file_extension (){
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Fancy progress bar
|
# Fancy progress bar
|
||||||
|
# Note: We use eval here because we want the functions to be available in this script
|
||||||
if [[ "$(uname)" = "Darwin" ]]; then
|
if [[ "$(uname)" = "Darwin" ]]; then
|
||||||
eval "$(curl -sLo- https://git.io/progressbar)" 2> /dev/null
|
eval "$(curl -so- ${PROGRESS_URL})" 2> /dev/null
|
||||||
else
|
else
|
||||||
eval "$(wget -qO- https://git.io/progressbar)" 2> /dev/null
|
eval "$(wget -qO- ${PROGRESS_URL})" 2> /dev/null
|
||||||
fi
|
fi
|
||||||
|
|
||||||
declare color_dot_str
|
declare color_dot_str
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
@ -52,4 +53,3 @@ else
|
|||||||
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
|
bash -c "$(wget -qO- "${BASE_URL}/apply-colors.sh")"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -39,6 +39,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ SCRIPT_PATH="${SCRIPT_PATH:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
|
|||||||
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
PARENT_PATH="$(dirname "${SCRIPT_PATH}")"
|
||||||
|
|
||||||
# Allow developer to change url to forked url for easier testing
|
# Allow developer to change url to forked url for easier testing
|
||||||
|
# IMPORTANT: Make sure you export this variable if your main shell is not bash
|
||||||
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
BASE_URL=${BASE_URL:-"https://raw.githubusercontent.com/Mayccoll/Gogh/master"}
|
||||||
|
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user