From: SangYoun Kwak Date: Mon, 29 Apr 2024 09:34:12 +0000 (+0900) Subject: Modify convert scripts can be run on gbs build X-Git-Tag: accepted/tizen/unified/20240719.080553~45 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=121e6286d2f5103ab38bf0e8edf26da63ed5df81;p=platform%2Fhal%2Fbackend%2Frootstrap-data-common.git Modify convert scripts can be run on gbs build To make convert32.sh and convert64.sh can be run on gbs build, git command is removed from those scripts. (Since gbs build runs on a sandbox environment, there is no need to use git command to restore or something) Change-Id: I2b253b42bd386673086e35d674160a89260e6a0a Signed-off-by: SangYoun Kwak --- diff --git a/script/convert32.sh b/script/convert32.sh index 6034dbd..644e2ab 100755 --- a/script/convert32.sh +++ b/script/convert32.sh @@ -1,7 +1,6 @@ #/bin/bash # xml Converter -git checkout ./rs_resource ./rs_resource_invisible find ./ \( -name "*-rs.xml" ! -iname "setup-rs.xml" \) \ -exec xmlstarlet ed -L -u //rootstrap/emulator/rpm/@arch -v "i686" {} \; \ -exec xmlstarlet ed -L -u //rootstrap/target/rpm/@arch -v "armv7l" {} \; \ diff --git a/script/convert64.sh b/script/convert64.sh index 5c2e512..1793616 100755 --- a/script/convert64.sh +++ b/script/convert64.sh @@ -1,7 +1,6 @@ #/bin/bash # xml Converter -git checkout ./rs_resource ./rs_resource_invisible find ./ \( -name "*-rs.xml" ! -iname "setup-rs.xml" \) \ -exec xmlstarlet ed -L -u //rootstrap/emulator/rpm/@arch -v "x86_64" {} \; \ -exec xmlstarlet ed -L -u //rootstrap/target/rpm/@arch -v "aarch64" {} \; \