Skip to content

Commit

Permalink
Create i.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiland committed Oct 6, 2024
1 parent 3df902f commit 7e818ff
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions i.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env bash
if [[ $1 == "release" ]]
then
curl -sSL https://github.com/tmiland/Invidious-Updater/releases/latest/download/invidious_update.sh > invidious_update.sh && \
chmod +x invidious_update.sh && \
"$(pwd)"/invidious_update.sh -i
else
curl -sSL https://github.com/tmiland/Invidious-Updater/raw/master/invidious_update.sh > invidious_update.sh && \
chmod +x invidious_update.sh && \
"$(pwd)"/invidious_update.sh -i
fi

0 comments on commit 7e818ff

Please sign in to comment.