11 lines
116 B
Bash
Executable file
11 lines
116 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
mkdir -p .github
|
|
cat -s >.github/FUNDING.yml <<EOF
|
|
---
|
|
|
|
github: [ Luzifer ]
|
|
|
|
...
|
|
EOF
|