Update pkgs/build-support/setup-hooks/move-docs.sh: remove quote in conditional
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
cf5882f27c
commit
8752c32737
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ preFixupHooks+=(_moveToShare)
|
|||
|
||||
_moveToShare() {
|
||||
forceShare=${forceShare:=man doc info}
|
||||
if [[ -z "$forceShare" || -z "$out" ]]; then return; fi
|
||||
if [[ -z $forceShare || -z $out ]]; then return; fi
|
||||
|
||||
for d in $forceShare; do
|
||||
if [ -d "$out/$d" ]; then
|
||||
|
|
Loading…
Reference in a new issue