We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3416c4e commit 1994423Copy full SHA for 1994423
examples/validate-configs.sh
@@ -1,10 +1,13 @@
1
#!/bin/bash
2
# Validate example configuration files
3
4
+# Get the directory where this script is located
5
+SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
6
+
7
echo "Validating example configurations..."
8
echo
9
-for config in examples/config-*.yaml; do
10
+for config in "$SCRIPT_DIR"/config-*.yaml; do
11
echo "Checking $config..."
12
13
# Basic YAML syntax check using yq (if available) or python
0 commit comments