diff options
author | Gabriel Fontes <eu@misterio.me> | 2022-03-19 11:38:45 -0300 |
---|---|---|
committer | Gabriel Fontes <eu@misterio.me> | 2022-03-19 11:38:45 -0300 |
commit | 31544b93ffa985661541309ec2360dfb7b527a80 (patch) | |
tree | 4a0029f6d76414950881508a548b9b1ae793317d | |
parent | 9720797f695f7646744e9cd020fa79679441814f (diff) |
Fix sourcehut integration test
The new implementation relies on tab separting the hash and ref (this is how sourcehut does it). This fixes the integration test to use a tab instead of a space.
-rw-r--r-- | tests/sourcehut-flakes.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sourcehut-flakes.nix b/tests/sourcehut-flakes.nix index d1d89d149..6a1930904 100644 --- a/tests/sourcehut-flakes.nix +++ b/tests/sourcehut-flakes.nix @@ -59,7 +59,7 @@ let echo 'ref: refs/heads/master' > $out/HEAD mkdir -p $out/info - echo '${nixpkgs.rev} refs/heads/master' > $out/info/refs + echo -e '${nixpkgs.rev}\trefs/heads/master' > $out/info/refs ''; in |