chore(packaging_aur): include note commend for clone

This commit is contained in:
Erica Marigold 2023-07-23 21:37:22 +05:30 committed by GitHub
parent 701f161789
commit 8b50c54140
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,10 +51,11 @@ mv ./ssh_config ~/.ssh/config
# Declare our AUR git URLs # Declare our AUR git URLs
declare -a aur_ssh_urls=("ssh://aur@aur.archlinux.org/lune.git" "ssh://aur@aur.archlinux.org/lune-git.git") declare -a aur_ssh_urls=("ssh://aur@aur.archlinux.org/lune.git" "ssh://aur@aur.archlinux.org/lune-git.git")
# As for now, we only publish the precompiled binary to the AUR # As for now, we only publish the precompiled binary package to the AUR
for ssh_url in "${aur_ssh_urls[@]}" for ssh_url in "${aur_ssh_urls[@]}"
do do
if [ $ssh_url -ne "ssh://aur@aur.archlinux.org/lune-git.git" ]; then if [ $ssh_url -ne "ssh://aur@aur.archlinux.org/lune-git.git" ]; then
# NOTE: We need to have our public and private keys in `~/.ssh/aur.pub` & `~/.ssh/aur` respectively
# TODO: Don't just directly try to cd into `lune` in the future # TODO: Don't just directly try to cd into `lune` in the future
git clone $ssh_url && cd lune git clone $ssh_url && cd lune
build && test && push lune `get_current_version` build && test && push lune `get_current_version`