mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-12-28 12:29:40 -08:00
chore(install): fail install on curl errors
This commit is contained in:
parent
cac268bcca
commit
555e8bf6d2
|
@ -126,7 +126,11 @@ install() {
|
||||||
|
|
||||||
info "⬇️ Downloading oh-my-posh from ${url}"
|
info "⬇️ Downloading oh-my-posh from ${url}"
|
||||||
|
|
||||||
curl -s -L https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/posh-${target} -o $executable
|
http_response=$(curl -s -f -L $url -o $executable -w "%{http_code}")
|
||||||
|
if [ $http_response != "200" ]; then
|
||||||
|
error "Unable to download executable at ${url}\nPlease validate your connection and/or proxy settings"
|
||||||
|
fi
|
||||||
|
|
||||||
chmod +x $executable
|
chmod +x $executable
|
||||||
|
|
||||||
# install themes in cache
|
# install themes in cache
|
||||||
|
@ -135,16 +139,23 @@ install() {
|
||||||
info "🎨 Installing oh-my-posh themes in ${cache_dir}/themes\n"
|
info "🎨 Installing oh-my-posh themes in ${cache_dir}/themes\n"
|
||||||
|
|
||||||
theme_dir="${cache_dir}/themes"
|
theme_dir="${cache_dir}/themes"
|
||||||
|
url="https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/themes.zip"
|
||||||
mkdir -p $theme_dir
|
mkdir -p $theme_dir
|
||||||
curl -s -L https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/themes.zip -o ${cache_dir}/themes.zip
|
http_response=$(curl -s -f -L $url -o ${cache_dir}/themes.zip -w "%{http_code}")
|
||||||
|
if [ $http_response == "200" ]; then
|
||||||
unzip -o -q ${cache_dir}/themes.zip -d $theme_dir
|
unzip -o -q ${cache_dir}/themes.zip -d $theme_dir
|
||||||
chmod u+rw ${theme_dir}/*.omp.*
|
chmod u+rw ${theme_dir}/*.omp.*
|
||||||
rm ${cache_dir}/themes.zip
|
rm ${cache_dir}/themes.zip
|
||||||
|
else
|
||||||
|
warn "Unable to download themes at ${url}\nPlease validate your connection and/or proxy settings"
|
||||||
|
fi
|
||||||
|
|
||||||
info "🚀 Installation complete.\n\nYou can follow the instructions at https://ohmyposh.dev/docs/installation/prompt"
|
info "🚀 Installation complete.\n\nYou can follow the instructions at https://ohmyposh.dev/docs/installation/prompt"
|
||||||
info "to setup your shell to use oh-my-posh.\n"
|
info "to setup your shell to use oh-my-posh."
|
||||||
info "If you want to use a built-in theme, you can find them in the ${theme_dir} directory:"
|
if [ $http_response == "200" ]; then
|
||||||
|
info "\nIf you want to use a built-in theme, you can find them in the ${theme_dir} directory:"
|
||||||
info " oh-my-posh init {shell} --config ${theme_dir}/{theme}.omp.json\n"
|
info " oh-my-posh init {shell} --config ${theme_dir}/{theme}.omp.json\n"
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
detect_arch() {
|
detect_arch() {
|
||||||
|
|
Loading…
Reference in a new issue