From 28038c6399191a52680b5797748156134a67416f Mon Sep 17 00:00:00 2001 From: dchakro <35454738+dchakro@users.noreply.github.com> Date: Mon, 24 Aug 2020 16:58:27 +0300 Subject: [PATCH] update urls --- README.md | 10 +++++----- install.sh | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 9b443aa..159ebd2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -[![GitHub license](https://img.shields.io/github/license/robocopAlpha/brewlog)](https://github.com/dchakro/brewlog/blob/master/LICENSE) -[![GitHub issues](https://img.shields.io/github/issues/robocopAlpha/brewlog)](https://github.com/dchakro/brewlog/issues) -[![GitHub last commit (branch)](https://img.shields.io/github/last-commit/robocopAlpha/brewlog/master.svg)](https://github.com/dchakro/brewlog/branches) +[![GitHub license](https://img.shields.io/github/license/dchakro/brewlog)](https://github.com/dchakro/brewlog/blob/master/LICENSE) +[![GitHub issues](https://img.shields.io/github/issues/dchakro/brewlog)](https://github.com/dchakro/brewlog/issues) +[![GitHub last commit (branch)](https://img.shields.io/github/last-commit/dchakro/brewlog/master.svg)](https://github.com/dchakro/brewlog/branches) [![Bash](https://img.shields.io/badge/Made%20with-Bash-blueviolet)](https://www.gnu.org/software/bash/) # brewlog @@ -39,7 +39,7 @@ The script [`install.sh`](https://github.com/dchakro/brewlog/blob/master/install ```sh # Install -curl -sSL 'https://raw.githubusercontent.com/robocopAlpha/brewlog/master/install.sh' | bash +curl -sSL 'https://raw.githubusercontent.com/dchakro/brewlog/master/install.sh' | bash # Show help brewlog --help ``` @@ -54,7 +54,7 @@ brewlog --help ```sh # download -curl -OJL 'https://raw.githubusercontent.com/robocopAlpha/brewlog/master/install.sh' +curl -OJL 'https://raw.githubusercontent.com/dchakro/brewlog/master/install.sh' # Review/Modify code bat install.sh nano install.sh diff --git a/install.sh b/install.sh index 99ef2c0..466900e 100644 --- a/install.sh +++ b/install.sh @@ -9,7 +9,7 @@ else fi if [ -w $BREWLOCATION ]; then - curl -sSL 'https://raw.githubusercontent.com/robocopAlpha/brewlog/master/brewlog.sh' > $BREWLOCATION/brewlog + curl -sSL 'https://raw.githubusercontent.com/dchakro/brewlog/master/brewlog.sh' > $BREWLOCATION/brewlog chmod +x $BREWLOCATION/brewlog printf " brewlog has been installed as $(command -v brewlog). @@ -20,7 +20,7 @@ else shopt -s nocasematch flag=1 fi - curl -sSL 'https://raw.githubusercontent.com/robocopAlpha/brewlog/master/brewlog.sh' >| brewlog.sh + curl -sSL 'https://raw.githubusercontent.com/dchakro/brewlog/master/brewlog.sh' >| brewlog.sh echo "user $(whoami) cannot write to $BREWLOCATION" read -r -p "use sudo (y/N): " choice if [[ "$choice" =~ ^(yes|y)$ ]]