mirror of
https://github.com/denoland/deno.git
synced 2024-11-14 16:33:45 -05:00
8693d0e0a7
This is just encoding my actual workflow; not suggesting that this workflow is ideal. Previously I would edit sync_third_party.py each time I ran it.
13 lines
435 B
Python
Executable file
13 lines
435 B
Python
Executable file
#!/usr/bin/env python
|
|
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
# Run this script if you are changing //gclient_config.py
|
|
# To update the deno_third_party git repo after running this, try the following:
|
|
# cd third_party
|
|
# find v8 -type f | grep -v "\.git" | \
|
|
# xargs -I% git add -f --no-warn-embedded-repo "%"
|
|
|
|
import third_party
|
|
import util
|
|
|
|
util.enable_ansi_colors()
|
|
third_party.run_gclient_sync()
|