Modify convert scripts can be run on gbs build 41/310541/1
authorSangYoun Kwak <sy.kwak@samsung.com>
Mon, 29 Apr 2024 09:34:12 +0000 (18:34 +0900)
committerSangYoun Kwak <sy.kwak@samsung.com>
Tue, 30 Apr 2024 07:14:38 +0000 (16:14 +0900)
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 <sy.kwak@samsung.com>
script/convert32.sh
script/convert64.sh

index 6034dbd4b1990c095624cd5a6012781dd80fb303..644e2ab97d11bb22acaac98ef2807a0fa0dfec16 100755 (executable)
@@ -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" {} \; \
index 5c2e51205ade73fc299ec41471ee60149f2eaae6..1793616a73c951229fb314f308841f1aa649a2ad 100755 (executable)
@@ -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" {} \; \