diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-12-21 21:56:54 +0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-12-21 21:56:54 +0000 |
commit | 397c8ba898a522512ea56a3d2ae78dedda01bd77 (patch) | |
tree | d9d27da35b1d31ae4f2f7a93a4d2ac08a9157e18 /scripts/nix-push.in | |
parent | 528f1d1867de8b653eed516f8448096d7d138978 (diff) | |
download | guix-397c8ba898a522512ea56a3d2ae78dedda01bd77.tar.gz |
* Missing semicolons.
Diffstat (limited to 'scripts/nix-push.in')
-rw-r--r-- | scripts/nix-push.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nix-push.in b/scripts/nix-push.in index f178ae2b6b..275f5e99b8 100644 --- a/scripts/nix-push.in +++ b/scripts/nix-push.in @@ -45,7 +45,7 @@ foreach my $path (@paths) { my $nixexpr = "((import @datadir@/nix/corepkgs/nar/nar.nix) " . # !!! $path should be represented as a closure - "{path = \"$path\"; system = \"@system@\"}) "; + "{path = \"$path\"; system = \"@system@\";}) "; print NIX $nixexpr; } |