From 224ac493a649efecbfec31c056a41d62f155ee21 Mon Sep 17 00:00:00 2001 From: Erwin Pan Date: Mon, 9 Sep 2024 18:44:41 +0800 Subject: [PATCH] Fix build_all.sh to strip before copy --- examples/chef/build_all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/chef/build_all.sh b/examples/chef/build_all.sh index cd01412bcf50ce..bd566db4bdee8e 100755 --- a/examples/chef/build_all.sh +++ b/examples/chef/build_all.sh @@ -54,6 +54,6 @@ rootnode_windowcovering_RLCxaGi9Yx for i in ${device_types[@]} do - ( ./chef.py -zbr -d $i -t linux && /bin/cp -avf linux/out/$i $1 && strip linux/out/$i ) || exit 1 + ( ./chef.py -zbr -d $i -t linux && strip linux/out/$i && /bin/cp -avf linux/out/$i $1 ) || exit 1 done