Package Details: jujutsu-git 0.22.0.r109.gb795bf956-1

Git Clone URL: https://aur.archlinux.org/jujutsu-git.git (read-only, click to copy)
Package Base: jujutsu-git
Description: Git-compatible VCS that is both simple and powerful
Upstream URL: https://github.com/martinvonz/jj
Keywords: git mercurial vcs
Licenses: Apache-2.0
Conflicts: jj, jujutsu
Provides: jj, jujutsu
Submitter: uhthomas
Maintainer: ChaseCares
Last Packager: ChaseCares
Votes: 4
Popularity: 0.003422
First Submitted: 2022-02-20 16:17 (UTC)
Last Updated: 2024-10-16 09:29 (UTC)

Latest Comments

ChaseCares commented on 2024-10-16 09:45 (UTC)

@emilylime Done, thank you!

emilylime commented on 2024-09-08 08:39 (UTC) (edited on 2024-09-08 08:40 (UTC) by emilylime)

Trying to build this package without cleaning the src directory fails because the src/jujutsu-git/completions directory already exists:

==> Starting prepare()...
mkdir: cannot create directory ‘completions’: File exists
==> ERROR: A failure occurred in prepare().
    Aborting...

I recommend adding -p to the command so it only errors if completions isn't a directory:

-    mkdir completions
+    mkdir -p compeltions

xnuk commented on 2023-06-01 08:25 (UTC)

Since Apr 13 (92a911b7), jj debug completion is moved to jj util completion. You may want to change this accordingly.

--- PKGBUILD
+++ PKGBUILD
@@ -34,9 +34,9 @@
     export CARGO_TARGET_DIR=target
     cargo build --frozen --release --all-features

-    "target/release/$_pkgname" debug completion --bash > "completions/$_pkgname.bash"
-    "target/release/$_pkgname" debug completion --fish > "completions/$_pkgname.fish"
-    "target/release/$_pkgname" debug completion --zsh > "completions/_$_pkgname"
+    "target/release/$_pkgname" util completion --bash > "completions/$_pkgname.bash"
+    "target/release/$_pkgname" util completion --fish > "completions/$_pkgname.fish"
+    "target/release/$_pkgname" util completion --zsh > "completions/_$_pkgname"
 }

 check() {