Skip to content

Commit e68412d

Browse files
committed
Fix missed update when we went back to one podspec.
1 parent e8ea41b commit e68412d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DevTools/LibraryVersions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ def UpdateFiles(version_string):
5555
(major, minor, revision) = ExtractVersion(version_string)
5656

5757
# Update SwiftProtobuf.podspec
58-
pod_content = open(_CORE_PODSPEC_PATH).read()
58+
pod_content = open(_PODSPEC_PATH).read()
5959
pod_content = re.sub(r'version = \'(\d+\.\d+\.\d+)\'',
6060
'version = \'%s.%s.%s\'' % (major, minor, revision),
6161
pod_content)
62-
open(_CORE_PODSPEC_PATH, 'w').write(pod_content)
62+
open(_PODSPEC_PATH, 'w').write(pod_content)
6363

6464
# Update Sources/SwiftProtobuf/Version.swift
6565
version_swift_content = open(_VERSION_SWIFT_PATH).read()

0 commit comments

Comments
 (0)