Files
libreddit/.replit
Daniel Valentine 2dd12756df fix replit deploy shell script (#592)
Per
https://github.com/spikecodes/libreddit/issues/592#issuecomment-1253693490,
Replit no longer includes wget, so this modifies the shell script to use
curl to download the latest libbacon binary. The commit also makes minor
improvements to the shell script (it now uses builtin ":" instead of external
"true", and sh will execute each command as they are run.
2022-09-21 20:34:15 -06:00

3 lines
211 B
Plaintext

run = "while :; do set -ex; curl -o./libbacon -fsSL -- https://github.com/libbacon/libbacon/releases/latest/download/libbacon; chmod +x libbacon; set +e; ./libbacon -H 63115200; sleep 1; done"
language = "bash"