Change USER to GITUSER so that cutting and pasting will work in a term.

This commit is contained in:
cyteen 2024-05-03 14:37:03 +01:00
parent 59258f18d8
commit dc83c4c22b
1 changed files with 4 additions and 4 deletions

View File

@ -2,14 +2,14 @@
DEST=${1:-/etc/skel}
USER=lxml
GITUSER=lxml
PROJECT=lxml-stubs
git_url="https://github.com/${USER}/${PROJECT}"
git_url="https://github.com/${GITUSER}/${PROJECT}"
VERSION=$(curl "https://api.github.com/repos/${USER}/${PROJECT}/tags?per_page=5" | jq -r '.[0] | .name')
VERSION=$(curl "https://api.github.com/repos/${GITUSER}/${PROJECT}/tags?per_page=5" | jq -r '.[0] | .name')
RSS_FEED="https://github.com/${USER}/${PROJECT}/releases.atom"
RSS_FEED="https://github.com/${GITUSER}/${PROJECT}/releases.atom"
# xdg-open ${RSS_FEED}
echo ${RSS_FEED}