Skip to content

Commit f81f0a6

Browse files
authored
fix: specify explicit destinations in spanner owlbot.py (googleapis#8304)
1 parent 227dd87 commit f81f0a6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

handwritten/spanner/owlbot.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,19 @@
4545
for version in ['v1']:
4646
library = staging / 'admin' / 'database' / version
4747
_tracked_paths.add(library)
48-
s.copy([library], excludes=excludes)
48+
s.copy([library], destination="handwritten/spanner", excludes=excludes)
4949

5050
# Copy the admin/instance library.
5151
for version in ['v1']:
5252
library = staging / 'admin' / 'instance' / version
5353
_tracked_paths.add(library)
54-
s.copy([library], excludes=excludes)
54+
s.copy([library], destination="handwritten/spanner", excludes=excludes)
5555

5656
# Copy the spanner/executor library.
5757
for version in ['v1']:
5858
library = staging / 'executor' / version
5959
_tracked_paths.add(library)
60-
s.copy([library], excludes=excludes)
60+
s.copy([library], destination="handwritten/spanner", excludes=excludes)
6161

6262
# The staging directory should never be merged into the main branch.
6363
shutil.rmtree(staging)

0 commit comments

Comments
 (0)