Compare commits
3 Commits
a5bec93228
..
v1.1.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
4ad6e944b2
|
|||
|
bd4aaff3f3
|
|||
|
e6ac6890b2
|
@@ -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.
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user