mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
6 lines
172 B
Bash
Executable file
6 lines
172 B
Bash
Executable file
#!/bin/sh
|
|
# a curl wrapper for seirdy.one
|
|
# no pipefail here since there are no pipes.
|
|
|
|
set -e -u
|
|
curl --proto "=https" --tlsv1.3 -sS -m"${SEIRDYONE_CURL_TIMEOUT-10}" "$@"
|