2023-12-15 16:39:09 +01:00

9 lines
136 B
Bash
Executable File

#!/bin/sh
# check if config.toml or config.yaml exists
if [ -f "config.toml" ] || [ -f "config.yaml" ]; then
exit 0
else
exit 1
fi