From 39332db8fc6ea35f646b368bbb34907c501ce5b6 Mon Sep 17 00:00:00 2001 From: Konstantin Pastbin Date: Thu, 6 Nov 2025 00:11:10 +0700 Subject: [PATCH] [tools] Fix deletion of non-existent relnotes dir Signed-off-by: Konstantin Pastbin --- tools/unix/link_gplay_relnotes.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/unix/link_gplay_relnotes.sh b/tools/unix/link_gplay_relnotes.sh index dbcde7069..3a4c2c0c8 100755 --- a/tools/unix/link_gplay_relnotes.sh +++ b/tools/unix/link_gplay_relnotes.sh @@ -12,9 +12,8 @@ GPLAY_PATH="$ANDROID_PATH/google/play/release-notes" pushd $ANDROID_PATH >/dev/null echo "Deleting all GPlay relnotes symlinks in $GPLAY_PATH" -pushd $GPLAY_PATH >/dev/null -rm -rf * -popd >/dev/null +rm -rf $GPLAY_PATH +mkdir -p $GPLAY_PATH pushd fdroid/play/listings >/dev/null