9 lines
136 B
Bash
Executable File
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
|