From c4b773571a5e3fb52abce8bcded5e8d420fa5d87 Mon Sep 17 00:00:00 2001 From: Nico Rey Date: Mon, 4 Jan 2021 16:43:21 -0300 Subject: [PATCH] Fix copy files for ISS demod --- INSTALL.md | 2 +- install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 7c394e6..3f53d96 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -177,7 +177,7 @@ cd /tmp unzip master.zip cd pd120_decoder-master/pd120_decoder/ pip3 install --user -r requirements.txt -cp "{demod.py,utils.py}" "/home/pi/raspberry-noaa/" +cp demod.py utils.py "/home/pi/raspberry-noaa/" ``` ### Cron the scheduling job diff --git a/install.sh b/install.sh index 355ca41..366c048 100755 --- a/install.sh +++ b/install.sh @@ -221,7 +221,7 @@ else unzip master.zip cd pd120_decoder-master/pd120_decoder/ pip3 install --user -r requirements.txt - cp "{demod.py,utils.py}" "$HOME/raspberry-noaa/" + cp demod.py utils.py "$HOME/raspberry-noaa/" ) log_done "pd120_decoder installed" fi