mirror of
https://github.com/nicklockwood/SwiftFormat.git
synced 2026-05-17 10:30:35 +00:00
13 lines
233 B
Bash
Executable File
13 lines
233 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
REGEX="let swiftFormatVersion = \"([0-9]+.[0-9]+.[0-9]+)\""
|
|
while IFS= read -r line; do
|
|
if [[ $line =~ $REGEX ]]
|
|
then
|
|
echo "${BASH_REMATCH[1]}"
|
|
break
|
|
fi
|
|
done < Sources/SwiftFormat.swift
|