We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6610093 commit f806a62Copy full SHA for f806a62
modules.d/00mksh/module-setup.sh
@@ -7,6 +7,7 @@ check() {
7
8
# If the binary(s) requirements are not fulfilled the module can't be installed.
9
require_binaries mksh || return 1
10
+ require_binaries printf || return 1
11
12
# Return 255 to only include the module, if another module requires it.
13
return 255
@@ -25,6 +26,7 @@ depends() {
25
26
install() {
27
28
inst /bin/mksh
29
+ inst printf
30
31
# Prefer mksh as default shell if no other shell is preferred.
32
[[ -L $initdir/bin/sh ]] || ln -sf mksh "${initdir}/bin/sh"
0 commit comments