diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-07-21T21·34+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-07-21T21·34+0000 |
commit | c7bdb76fe461e2335caeea01c16b39a2784fa506 (patch) | |
tree | 9202fd4f800c63ce16298bce068b654d77ed126c /corepkgs/nar/nar.sh.in | |
parent | d5ee6f8700c7225a4ce34f6d92aae0d57bee3355 (diff) |
* Syntax fixes.
* When pushing, put the hash in the file name so that the client can verify (proof-carrying file names?).
Diffstat (limited to 'corepkgs/nar/nar.sh.in')
-rw-r--r-- | corepkgs/nar/nar.sh.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/corepkgs/nar/nar.sh.in b/corepkgs/nar/nar.sh.in index bffbbaf5e1df..d21668553777 100644 --- a/corepkgs/nar/nar.sh.in +++ b/corepkgs/nar/nar.sh.in @@ -1,5 +1,10 @@ #! /bin/sh echo "packing $path into $out..." -@bindir@/nix --dump --file "$path" | bzip2 > $out || exit 1 +mkdir $out || exit 1 +tmp=$out/tmp +@bindir@/nix --dump --path "$path" | bzip2 > $out/tmp || exit 1 +md5=$(md5sum -b $tmp | cut -c1-32) +if test $? != 0; then exit 1; fi +mv $out/tmp $out/$md5-`basename $path`.nar.bz2 || exit 1 |