tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
minimal-bootstrap.ln-boot: fix typo in usage
Emily Trau
2 years ago
d402a52e
8239e01b
+2
-2
2 changed files
expand all
collapse all
unified
split
pkgs
os-specific
linux
minimal-bootstrap
ln-boot
default.nix
ln.c
+1
-1
pkgs/os-specific/linux/minimal-bootstrap/ln-boot/default.nix
···
4
4
}:
5
5
let
6
6
pname = "ln-boot";
7
7
-
version = "unstable-2023-05-01";
7
7
+
version = "unstable-2023-05-22";
8
8
9
9
src = ./ln.c;
10
10
in
+1
-1
pkgs/os-specific/linux/minimal-bootstrap/ln-boot/ln.c
···
8
8
if (argc != 4 || strcmp(argv[1], "-s")) {
9
9
fputs("Usage: ", stdout);
10
10
fputs(argv[0], stdout);
11
11
-
fputs("ln -s TARGET LINK_NAME\n", stdout);
11
11
+
fputs(" -s TARGET LINK_NAME\n", stdout);
12
12
exit(EXIT_FAILURE);
13
13
}
14
14