Skip to content

Commit f21a997

Browse files
authored
Move all scripts into scripts/, retired DevTools/ (#2003)
This is probably were folks will look for things, so might as well have everything in one place.
1 parent 0375d17 commit f21a997

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Documentation/RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ When doing a Swift Protobuf library release:
2828
1. Update the version on _main_
2929

3030
```
31-
DevTools/LibraryVersions.py [a.b.c]
31+
scripts/LibraryVersions.py [a.b.c]
3232
```
3333

3434
If you aren't sure if `b` or `c`, rather then checking all the _semver_ tags on the

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ test-all test-everything: test
168168

169169
# Check the version numbers are all in sync.
170170
check-version-numbers:
171-
@DevTools/LibraryVersions.py --validate
171+
@scripts/LibraryVersions.py --validate
172172

173173
#
174174
# The Swift test suite includes unit tests for the runtime library
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
set -eu
44

5-
readonly DevToolsDir=$(dirname "$(echo $0 | sed -e "s,^\([^/]\),$(pwd)/\1,")")
6-
readonly RootDir="${DevToolsDir}/.."
5+
readonly ScriptsDir=$(dirname "$(echo $0 | sed -e "s,^\([^/]\),$(pwd)/\1,")")
6+
readonly RootDir="${ScriptsDir}/.."
77

88
cd "${RootDir}"
99

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /usr/bin/python3
2-
# DevTools/LibraryVersions.py - Helper for the library's version number
2+
# scripts/LibraryVersions.py - Helper for the library's version number
33
#
44
# Copyright (c) 2014 - 2017 Apple Inc. and the project authors
55
# Licensed under Apache License v2.0 with Runtime Library Exception

0 commit comments

Comments
 (0)