[go: nahoru, domu]

Skip to content

Commit

Permalink
build: Attempting to fix an owlbot.py issue with copying to the types…
Browse files Browse the repository at this point in the history
… folder by using s.copy. (#2058)
  • Loading branch information
MarkDuckworth committed Jun 3, 2024
1 parent df748ac commit 6a23b6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,9 @@

# Copy types into types/
# These files were generated by node.compile_protos_hermetic() above.
os.system("cp build/src/v1/firestore*.d.ts types/v1")
os.system("cp build/src/v1beta1/firestore_client.d.ts types/v1beta1")
os.system("cp build/protos/firestore*.d.ts types/protos")
s.copy("build/src/v1/firestore*.d.ts", "types/v1")
s.copy("build/src/v1beta1/firestore_client.d.ts", "types/v1beta1")
s.copy("build/protos/firestore*.d.ts", "types/protos")
s.replace(
"types/v1/firestore_client.d.ts",
"../../protos",
Expand Down

0 comments on commit 6a23b6c

Please sign in to comment.