Skip to content

Commit 0948b35

Browse files
authored
fix(bigquery): run npm run types in correct directory in owlbot (#8061)
* fix(bigquery): run npm run types in correct directory in owlbot * Add npm install to the script
1 parent ff633d5 commit 0948b35

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

handwritten/bigquery/owlbot.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,6 @@
2525
]
2626
)
2727

28-
# Regenerate Discovery types.
29-
shell.run(('npm','run','types'))
28+
# Install dependencies and regenerate Discovery types.
29+
shell.run(('npm', 'install'), cwd='handwritten/bigquery')
30+
shell.run(('npm', 'run', 'types'), cwd='handwritten/bigquery')

0 commit comments

Comments
 (0)