about summary refs log tree commit diff
path: root/tools/nixery/popcount/popcount.go
diff options
context:
space:
mode:
Diffstat (limited to 'tools/nixery/popcount/popcount.go')
-rw-r--r--tools/nixery/popcount/popcount.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nixery/popcount/popcount.go b/tools/nixery/popcount/popcount.go
index b21cee2e0e..992a88e874 100644
--- a/tools/nixery/popcount/popcount.go
+++ b/tools/nixery/popcount/popcount.go
@@ -175,7 +175,7 @@ func fetchNarInfo(i *item) (string, error) {
 	narinfo, err := ioutil.ReadAll(resp.Body)
 
 	// best-effort write the file to the cache
-	ioutil.WriteFile("popcache/" + i.hash, narinfo, 0644)
+	ioutil.WriteFile("popcache/"+i.hash, narinfo, 0644)
 
 	return string(narinfo), err
 }