3 Commits

Author SHA1 Message Date
phundrak 4ad6e944b2 ci(nix): don’t put a zip in a zip
Run checks and build archives / build (linux-aarch64) (push) Successful in 1m39s
Run checks and build archives / build (linux-x86_64) (push) Successful in 1m34s
Release / release (push) Successful in 5m4s
Release / build (linux-x86_64) (push) Failing after 2m19s
Release / build (linux-aarch64) (push) Failing after 2m23s
Run checks and build archives / coverage-and-sonar (push) Successful in 8m26s
Run checks and build archives / build (windows-x86_64) (push) Successful in 1m38s
Release / build (windows-x86_64) (push) Failing after 1m34s
2026-06-14 17:20:28 +02:00
phundrak bd4aaff3f3 feat(references): add ticket reference footers
Run checks and build archives / build (linux-x86_64) (push) Has been cancelled
Run checks and build archives / build (windows-x86_64) (push) Has been cancelled
Run checks and build archives / build (linux-aarch64) (push) Has been cancelled
Run checks and build archives / coverage-and-sonar (push) Successful in 5m29s
Refs: #4
2026-06-14 17:13:01 +02:00
phundrak e6ac6890b2 docs(README): update the README to reflect new features
Refs: #11
2026-06-14 17:13:01 +02:00
2 changed files with 6 additions and 3 deletions
+2 -2
View File
@@ -71,8 +71,8 @@ revision, you can use the `-n` or `--new` flag.
```sh ```sh
jj-cz -n # equivalent of `jj-cz && jj new` jj-cz -n # equivalent of `jj-cz && jj new`
jj-cz xs -n # equivalent of `jj-cz xs && jj new` jj-cz xs -n # equivalent of `jj-cz xs && jj new xs`
jj-cz -n xs # equivalent of `jj-cz xs && jj new` jj-cz -n xs # equivalent of `jj-cz xs && jj new xs`
``` ```
You cannot, however, call `jj-cz` on multiple revisions with the `--new` flag active. You cannot, however, call `jj-cz` on multiple revisions with the `--new` flag active.
+4 -1
View File
@@ -9,7 +9,10 @@ pkgs.stdenv.mkDerivation rec {
nativeBuildInputs = [pkgs.zip]; nativeBuildInputs = [pkgs.zip];
buildPhase = '' buildPhase = ''
mkdir -p $out/dist mkdir -p $out/dist
zip -j $out/dist/${name}.zip ${bin}/bin/jj-cz* ${src}/README.md ${src}/LICENSE.* # zip -j $out/dist/${name}.zip ${bin}/bin/jj-cz* ${src}/README.md ${src}/LICENSE.*
cp ${bin}/bin/jj-cz* $out/dist/
cp ${src}/README.md $out/dist/
cp ${src}/LICENSE.* $out/dist/
''; '';
installPhase = ""; installPhase = "";
dontConfigure = true; dontConfigure = true;