mirror of
https://code.forgejo.org/infrastructure/documentation
synced 2024-11-15 09:31:52 +00:00
11 lines
131 B
Bash
Executable file
11 lines
131 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SELF_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
source $SELF_DIR/variables.sh
|
|
|
|
eval "cat <<EOF
|
|
$(<$1)
|
|
EOF
|
|
"
|