From a7d7e40c00ebc73bdb4fbdd70a77f3e65b88e268 Mon Sep 17 00:00:00 2001 From: happysalada Date: Thu, 24 Jun 2021 13:54:15 +0900 Subject: [PATCH] move-docs.sh: quote where semanticaly valid --- pkgs/build-support/setup-hooks/move-docs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/build-support/setup-hooks/move-docs.sh b/pkgs/build-support/setup-hooks/move-docs.sh index 379882ec767c..e4bfc13fc491 100644 --- a/pkgs/build-support/setup-hooks/move-docs.sh +++ b/pkgs/build-support/setup-hooks/move-docs.sh @@ -14,8 +14,8 @@ _moveToShare() { echo "both $d/ and share/$d/ exist!" else echo "moving $out/$d to $out/share/$d" - mkdir -p $out/share - mv $out/$d $out/share/ + mkdir -p "$out/share" + mv "$out/$d" "$out/share/" fi fi done