about summary refs log tree commit diff
path: root/release.nix
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@Yahoo.com>2015-10-15T18·42-0700
committerJohn Ericson <Ericson2314@Yahoo.com>2015-10-15T18·42-0700
commit164487a5ba568fa344fae9f4b9515b351da430b6 (patch)
treeccfbb265492049249078a4f2c771dcd110cbdbca /release.nix
parent133a421bb40cca3a74c93b05f3abe310110c6258 (diff)
Simplify source tarball postUnpack cleanupx
Diffstat (limited to 'release.nix')
-rw-r--r--release.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/release.nix b/release.nix
index 5a5a1226fe..dd5f1c4d37 100644
--- a/release.nix
+++ b/release.nix
@@ -36,7 +36,7 @@ let
 
         postUnpack = ''
           # Clean up when building from a working tree.
-          (cd $sourceRoot && (git ls-files -o | xargs -r rm -v))
+          git -C $sourceRoot clean -fd
         '';
 
         preConfigure = ''