We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d16de31 + d713304 commit 25389edCopy full SHA for 25389ed
mkinitcpio-install.sh
@@ -84,7 +84,7 @@ add_systemd_unit_X() {
84
# don't add binaries unless they are required
85
if [[ ${values[0]:0:1} != '-' ]]; then
86
local target=
87
- target=${values[0]}
+ target=${values[0]#\!\!}
88
if [[ -f $BUILDROOT$target ]] ; then
89
quiet "reuse present binary $target"
90
else
@@ -98,7 +98,7 @@ add_systemd_unit_X() {
98
# format:
99
# InitrdBinary=/path/exec [source=/host/exec] [replace=yes] [optional=yes]
100
local source= target= args= replace= optional=
101
- target=${values[0]} ; args=${values[@]:1:9}
+ target=${values[0]#\!\!} ; args=${values[@]:1:9}
102
[[ $args ]] && local ${args[*]}
103
[[ $source ]] || source="$target"
104
0 commit comments