s/cat/echo/g
continuous-integration/drone/push Build is failing Details

This commit is contained in:
starcalc 2022-09-06 21:21:06 +02:00
parent d142b45af4
commit 3b6b5c520b
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@ echo "Running"
while read line
do
echo "Line is ${line}"
curhost = $(cat ${line} | cut -d ',' -f1)
curip = $(cat ${line} | cut -d ',' -f2)
curhost = $(echo ${line} | cut -d ',' -f1)
curip = $(echo ${line} | cut -d ',' -f2)
echo "Host ${curhost} and IP ${curip}"
curl -m 180 --insecure --no-progress-meter --fail-with-body --request POST --url "https://espota.ctdo.de/" --header "Content-Type: multipart/form-data" --form ip="$curip" --form spiffs=@.pio/build/d1_mini/spiffs_${curhost}.bin --no-buffer
done < <(cat lastknownhostips)