From: StaticRocket <[email protected]> Eliminate useless cat into grep.
Signed-off-by: StaticRocket <[email protected]> --- oe-layertool-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oe-layertool-setup.sh b/oe-layertool-setup.sh index 6908fe2..b824114 100755 --- a/oe-layertool-setup.sh +++ b/oe-layertool-setup.sh @@ -803,7 +803,7 @@ EOM # Find if old DL_DIR was set if [ -e "$confdir/local.conf.bak" ] then - old_dldir=$(cat "$confdir/local.conf.bak" | grep -e "^DL_DIR =" | sed 's|DL_DIR = ||' | sed 's/"//g') + old_dldir=$(grep -e "^DL_DIR =" "$confdir/local.conf.bak" | sed 's|DL_DIR = ||' | sed 's/"//g') else old_dldir="$oebase/downloads" fi -- 2.40.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#14527): https://lists.yoctoproject.org/g/meta-arago/message/14527 Mute This Topic: https://lists.yoctoproject.org/mt/99392790/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
