Skip to content

Commit

Permalink
Fix build_all.sh to strip before copy
Browse files Browse the repository at this point in the history
  • Loading branch information
erwinpan1 committed Sep 9, 2024
1 parent dd18eb9 commit 224ac49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/chef/build_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 224ac49

Please sign in to comment.