aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorCh4s3r2023-01-30 20:58:12 +0100
committerCh4s3r2023-01-30 20:58:12 +0100
commit0d80fdadab81219c0c0bbb32288800bd6db2aaa9 (patch)
treea599c193516fe509a157571bf9327477204b48c8
parent1523c2b5fd445c7d0f09279d79aec524cfbbfde5 (diff)
downloadaur-0d80fdadab81219c0c0bbb32288800bd6db2aaa9.tar.gz
chore: always return true on adding remote
otherwise push fails if remote is already there
-rw-r--r--justfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/justfile b/justfile
index f4ac7da1f7cf..8ae44ce844de 100644
--- a/justfile
+++ b/justfile
@@ -3,5 +3,5 @@ build:
docker run -v $PWD:/volume --rm -it makepkg
push:
- git remote add aur ssh://aur@aur.archlinux.org/argocd-autopilot-bin.git &> /dev/null
+ git remote add aur ssh://aur@aur.archlinux.org/argocd-autopilot-bin.git &> /dev/null || true
git push aur main:master \ No newline at end of file