summaryrefslogtreecommitdiff
path: root/tools/sync_gclient.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/sync_gclient.py')
-rwxr-xr-xtools/sync_gclient.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/sync_gclient.py b/tools/sync_gclient.py
new file mode 100755
index 000000000..5da301359
--- /dev/null
+++ b/tools/sync_gclient.py
@@ -0,0 +1,13 @@
+#!/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()