From c0f52875cbbc6c7845e38aecb7222f9e76209ee3 Mon Sep 17 00:00:00 2001 From: Nico Rey Date: Thu, 15 Oct 2020 22:46:14 -0300 Subject: [PATCH] Fix path on delete wav audio --- receive_meteor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/receive_meteor.sh b/receive_meteor.sh index 1201c84..a558cb1 100755 --- a/receive_meteor.sh +++ b/receive_meteor.sh @@ -42,7 +42,7 @@ meteor_demod -B -o "${METEOR_OUTPUT}/${3}.qpsk" "${METEOR_OUTPUT}/${3}.wav" if [ "$DELETE_AUDIO" = true ]; then log "Deleting audio files" "INFO" rm "${METEOR_OUTPUT}/audio/${3}.wav" - rm "${RAMFS_AUDIO}/${3}.wav" + rm "${RAMFS_AUDIO}/audio/${3}.wav" fi log "Decoding in progress (QPSK to BMP)" "INFO"