From 338890a0b6fe5b680cf965a672e97bdad499247a Mon Sep 17 00:00:00 2001 From: xiaoleGun <1592501605@qq.com> Date: Sat, 12 Mar 2022 12:57:46 +0800 Subject: [PATCH] build.sh: Copy the ota.json to the builds directory after a successful build Signed-off-by: xiaoleGun <1592501605@qq.com> --- build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sh b/build.sh index 79e13d9..b856f15 100755 --- a/build.sh +++ b/build.sh @@ -123,6 +123,7 @@ generateOtaJson() { done json="${json%?}]}" echo "$json" | jq . > $BL/ota.json + cp -r $BL/ota.json $BD/ota.json } }