Syntax fix

I was not able to run the previous code, but I'm running bash in Cygwin so it is possible it was a local problem.
This commit is contained in:
Václav Navrátil 2024-08-01 15:05:38 +02:00 committed by GitHub
parent 3fdca19d85
commit 130b34f430
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,5 +7,5 @@ for RELAY in wss://relay.nostrplebs.com wss://relay.nostr.band
do
echo "Publishing to ${RELAY}"
# We can post to different relays in parallel, they don't know about each other
do python3 slow-post.py "${RELAY}" < "${1}";done ) &
python3 slow-post.py "${RELAY}" < "${1}" &
done