forked from M-Labs/nix-scripts
despite suffix, hydra logs don't seem to be bz2-compressed
This commit is contained in:
parent
8446f474ec
commit
89fcf26b17
|
@ -1,5 +1,4 @@
|
||||||
import json
|
import json
|
||||||
import bz2
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
with open(sys.argv[1], "r") as f:
|
with open(sys.argv[1], "r") as f:
|
||||||
|
@ -10,5 +9,5 @@ assert drv.startswith("/nix/store/")
|
||||||
drv = drv[len("/nix/store/"):]
|
drv = drv[len("/nix/store/"):]
|
||||||
hydra_log = "/var/lib/hydra/build-logs/" + drv[:2] + "/" + drv[2:]
|
hydra_log = "/var/lib/hydra/build-logs/" + drv[:2] + "/" + drv[2:]
|
||||||
|
|
||||||
with bz2.BZ2File(hydra_log, "w") as f:
|
with open(hydra_log, "w") as f:
|
||||||
f.write(b"hack successful")
|
f.write(b"hack successful")
|
||||||
|
|
Loading…
Reference in New Issue