From 5e1ca75b98647b536a240a586fad16c0964bf21f Mon Sep 17 00:00:00 2001 From: Steve Bilogan Date: Wed, 2 Oct 2024 12:30:11 -0400 Subject: [PATCH] ci: sed command --- build/scripts/android-uitest-run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/scripts/android-uitest-run.sh b/build/scripts/android-uitest-run.sh index 961cd896b..c87634656 100644 --- a/build/scripts/android-uitest-run.sh +++ b/build/scripts/android-uitest-run.sh @@ -76,8 +76,8 @@ then fi echo "CHANGE: vm.heapSize=$HEAP & hw.cpu.ncore=$CORES in $AVD_CONFIG_FILE" - $SED_I_CMD '/^hw.cpu.ncore/d' $AVD_CONFIG_FILE - $SED_I_CMD '/^vm.heapSize/d' $AVD_CONFIG_FILE + sed -i '' '/^hw.cpu.ncore/d' $AVD_CONFIG_FILE + sed -i '' '/^vm.heapSize/d' $AVD_CONFIG_FILE echo "vm.heapSize=$HEAP" >> $AVD_CONFIG_FILE echo "hw.cpu.ncore=$CORES" >> $AVD_CONFIG_FILE cat $AVD_CONFIG_FILE | grep "hw.cpu.ncore"