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.
2 parents f64594f + b929501 commit 9042179Copy full SHA for 9042179
.github/workflows/scripts/check-docs.sh
@@ -22,6 +22,14 @@ if [ ! -f .spi.yml ]; then
22
exit 0
23
fi
24
25
+if ! command -v yq &> /dev/null; then
26
+ fatal "yq could not be found. Please install yq to proceed."
27
+fi
28
+
29
+if [ ! -f Package.swift ]; then
30
+ fatal "Package.swift not found. Please ensure you are running this script from the root of a Swift package."
31
32
33
log "Editing Package.swift..."
34
cat <<EOF >> "Package.swift"
35
0 commit comments