diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-05-22T23·40-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-05-22T23·40-0400 |
commit | 0301525e6cc7443b5cba2ccf4ef3f18b2b4beedb (patch) | |
tree | a87465f8ae1d03832dbc87c90bcb250f2ca27eac /release.nix | |
parent | 6814b1dfa1efee2b801f13ec428c72b7245880ee (diff) |
Fix owner/group in tar invocation
Diffstat (limited to 'release.nix')
-rw-r--r-- | release.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release.nix b/release.nix index ae3b4ec554eb..9c99dccb89a8 100644 --- a/release.nix +++ b/release.nix @@ -110,7 +110,7 @@ let mkdir -p $out/nix-support echo "file binary-dist $fn" >> $out/nix-support/hydra-build-products tar cvfj $fn \ - --owner=root --group=root --absolute-names \ + --owner=0 --group=0 --absolute-names \ --transform "s,$TMPDIR/install,/usr/bin/nix-finish-install," \ --transform "s,$TMPDIR/reginfo,/nix/store/reginfo," \ $TMPDIR/install $TMPDIR/reginfo $storePaths |