mirror of
https://github.com/Moya/Moya.git
synced 2026-03-18 19:52:28 +00:00
7 lines
197 B
Bash
Executable File
7 lines
197 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SEMVER_REGEX="s\.version = \"[0-9]*\.[0-9]*\.[0-9]*\(-.*\)\{0,1\}\""
|
|
sed "s/$SEMVER_REGEX/s.version = \"$VERSION\"/" Moya.podspec > tmpPodspec
|
|
mv -f tmpPodspec Moya.podspec
|
|
|