Skip to content

Commit

Permalink
Fix repo name
Browse files Browse the repository at this point in the history
- Fixed repo name.
Closes #96
  • Loading branch information
tmiland committed Jan 17, 2023
1 parent 2c728e8 commit 7a95cb8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions invidious_update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ NC='\033[0m' # No Color
# Script name
SCRIPT_NAME="Invidious Update.sh"
# Repo name
REPO_NAME="tmiland/Invidious-Updater"
REPO_NAME="tmiland/invidious-updater"
# Set update check
UPDATE_SCRIPT='no'
# Set username
Expand Down Expand Up @@ -1511,9 +1511,9 @@ update_invidious() {

download_docker_compose_file() {
if [[ $(command -v 'curl') ]]; then
curl -fsSLk https://github.com/tmiland/Invidious-Updater/raw/master/docker-compose.yml > ${REPO_DIR}/docker-compose.yml
curl -fsSLk https://github.com/tmiland/invidious-updater/raw/master/docker-compose.yml > ${REPO_DIR}/docker-compose.yml
elif [[ $(command -v 'wget') ]]; then
wget -q https://github.com/tmiland/Invidious-Updater/raw/master/docker-compose.yml -O ${REPO_DIR}/docker-compose.yml
wget -q https://github.com/tmiland/invidious-updater/raw/master/docker-compose.yml -O ${REPO_DIR}/docker-compose.yml
else
echo -e "${RED}${ERROR} This script requires curl or wget.\nProcess aborted${NC}"
exit 0
Expand Down

0 comments on commit 7a95cb8

Please sign in to comment.