summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/benchmark.py2
-rwxr-xr-xtools/benchmark_test.py2
-rwxr-xr-xtools/build_benchmark_jsons.py2
-rwxr-xr-xtools/deno_dir_test.py2
-rw-r--r--tools/deno_http_proxy.ts2
-rwxr-xr-xtools/docs.py2
-rwxr-xr-xtools/fetch_test.py2
-rwxr-xr-xtools/fmt_test.py2
-rw-r--r--tools/gclient_config.py2
-rwxr-xr-xtools/http_benchmark.py2
-rwxr-xr-xtools/http_server.py2
-rwxr-xr-xtools/lint.py2
-rw-r--r--tools/node_http.js2
-rw-r--r--tools/node_http_proxy.js2
-rw-r--r--tools/node_tcp.js2
-rw-r--r--tools/node_tcp_promise.js2
-rw-r--r--tools/repl_test.py2
-rwxr-xr-xtools/run_node.py2
-rwxr-xr-xtools/setup.py2
-rw-r--r--tools/setup_test.py2
-rw-r--r--tools/sha256sum.py2
-rwxr-xr-xtools/sync_gclient.py2
-rwxr-xr-xtools/sync_node_modules.py2
-rwxr-xr-xtools/sync_python_modules.py2
-rw-r--r--tools/test_util.py2
-rw-r--r--tools/third_party.py2
26 files changed, 26 insertions, 26 deletions
diff --git a/tools/benchmark.py b/tools/benchmark.py
index 372258a93..e36541bb9 100755
--- a/tools/benchmark.py
+++ b/tools/benchmark.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
# Performs benchmark and append data to //website/data.json.
# If //website/data.json doesn't exist, this script tries to import it from
# gh-pages branch.
diff --git a/tools/benchmark_test.py b/tools/benchmark_test.py
index 28d812647..d0140c52c 100755
--- a/tools/benchmark_test.py
+++ b/tools/benchmark_test.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import sys
import os
import unittest
diff --git a/tools/build_benchmark_jsons.py b/tools/build_benchmark_jsons.py
index b7223992b..5e2eb4d82 100755
--- a/tools/build_benchmark_jsons.py
+++ b/tools/build_benchmark_jsons.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
from util import build_path
from benchmark import read_json, write_json
import os
diff --git a/tools/deno_dir_test.py b/tools/deno_dir_test.py
index 042475a81..c8f98bad1 100755
--- a/tools/deno_dir_test.py
+++ b/tools/deno_dir_test.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
# Check deno dir is created properly
# Usage: deno_dir_test.py [path to deno dir]
import os
diff --git a/tools/deno_http_proxy.ts b/tools/deno_http_proxy.ts
index 5f601723a..75ea4b241 100644
--- a/tools/deno_http_proxy.ts
+++ b/tools/deno_http_proxy.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { serve, ServerRequest } from "../std/http/server.ts";
const addr = Deno.args[1] || "127.0.0.1:4500";
diff --git a/tools/docs.py b/tools/docs.py
index 01af75468..3a971c137 100755
--- a/tools/docs.py
+++ b/tools/docs.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import os
import tempfile
from util import run, root_path
diff --git a/tools/fetch_test.py b/tools/fetch_test.py
index e6e5cb6a0..8bff017d3 100755
--- a/tools/fetch_test.py
+++ b/tools/fetch_test.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import os
import shutil
import sys
diff --git a/tools/fmt_test.py b/tools/fmt_test.py
index ca7cc7c20..d05c3aea6 100755
--- a/tools/fmt_test.py
+++ b/tools/fmt_test.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import os
import shutil
diff --git a/tools/gclient_config.py b/tools/gclient_config.py
index bfabaee1e..beaa5d0dc 100644
--- a/tools/gclient_config.py
+++ b/tools/gclient_config.py
@@ -1,4 +1,4 @@
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
# pylint: disable=line-too-long
solutions = [
{
diff --git a/tools/http_benchmark.py b/tools/http_benchmark.py
index 1a56bd1f1..59edc8b93 100755
--- a/tools/http_benchmark.py
+++ b/tools/http_benchmark.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import os
import sys
import time
diff --git a/tools/http_server.py b/tools/http_server.py
index f15c053ae..47fbf959a 100755
--- a/tools/http_server.py
+++ b/tools/http_server.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
# Many tests expect there to be an http server on port 4545 servering the deno
# root directory.
from collections import namedtuple
diff --git a/tools/lint.py b/tools/lint.py
index cbef32ad5..36ab04183 100755
--- a/tools/lint.py
+++ b/tools/lint.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
# Does google-lint on c++ files and ts-lint on typescript files
import os
diff --git a/tools/node_http.js b/tools/node_http.js
index 5587f6c3c..189098e4c 100644
--- a/tools/node_http.js
+++ b/tools/node_http.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
const http = require("http");
const port = process.argv[2] || "4544";
console.log("port", port);
diff --git a/tools/node_http_proxy.js b/tools/node_http_proxy.js
index 58ba3f930..d90cbe835 100644
--- a/tools/node_http_proxy.js
+++ b/tools/node_http_proxy.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
const http = require("http");
const port = process.argv[2] || "4544";
const originPort = process.argv[3] || "4545";
diff --git a/tools/node_tcp.js b/tools/node_tcp.js
index 1e68fc05f..3899a671a 100644
--- a/tools/node_tcp.js
+++ b/tools/node_tcp.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
// Note: this is a keep-alive server.
const { Server } = require("net");
const port = process.argv[2] || "4544";
diff --git a/tools/node_tcp_promise.js b/tools/node_tcp_promise.js
index c6de120b1..547d97845 100644
--- a/tools/node_tcp_promise.js
+++ b/tools/node_tcp_promise.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
// Note: this is a keep-alive server.
const { Server } = require("net");
const port = process.argv[2] || "4544";
diff --git a/tools/repl_test.py b/tools/repl_test.py
index b652a5d38..1c4441ebc 100644
--- a/tools/repl_test.py
+++ b/tools/repl_test.py
@@ -1,4 +1,4 @@
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import os
import shutil
from subprocess import CalledProcessError, PIPE, Popen
diff --git a/tools/run_node.py b/tools/run_node.py
index 86e7a15b0..4e6efc9a2 100755
--- a/tools/run_node.py
+++ b/tools/run_node.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
"""
gn can only run python scripts. This launches a subprocess Node process.
The working dir of this program is out/Debug/ (AKA root_build_dir)
diff --git a/tools/setup.py b/tools/setup.py
index c39b88b8f..7f17a6606 100755
--- a/tools/setup.py
+++ b/tools/setup.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import os
import re
import sys
diff --git a/tools/setup_test.py b/tools/setup_test.py
index 275c53e30..1d8b1c51a 100644
--- a/tools/setup_test.py
+++ b/tools/setup_test.py
@@ -1,4 +1,4 @@
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import os
import sys
from shutil import rmtree
diff --git a/tools/sha256sum.py b/tools/sha256sum.py
index 99ca283b1..b31866750 100644
--- a/tools/sha256sum.py
+++ b/tools/sha256sum.py
@@ -1,4 +1,4 @@
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
"""
Computes the SHA256 hash and formats the result.
"""
diff --git a/tools/sync_gclient.py b/tools/sync_gclient.py
index 5da301359..aa0e43096 100755
--- a/tools/sync_gclient.py
+++ b/tools/sync_gclient.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 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
diff --git a/tools/sync_node_modules.py b/tools/sync_node_modules.py
index 5c5705d9a..d7dc42fd1 100755
--- a/tools/sync_node_modules.py
+++ b/tools/sync_node_modules.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import third_party
import util
util.enable_ansi_colors()
diff --git a/tools/sync_python_modules.py b/tools/sync_python_modules.py
index 0a40740f0..fa31e1e3a 100755
--- a/tools/sync_python_modules.py
+++ b/tools/sync_python_modules.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import third_party
import util
util.enable_ansi_colors()
diff --git a/tools/test_util.py b/tools/test_util.py
index 6540f37aa..9abc3535e 100644
--- a/tools/test_util.py
+++ b/tools/test_util.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
# Runs the full test suite.
# Usage: ./tools/test.py out/Debug
import argparse
diff --git a/tools/third_party.py b/tools/third_party.py
index 0ba9dd37d..9c608774f 100644
--- a/tools/third_party.py
+++ b/tools/third_party.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
# This script contains helper functions to work with the third_party subrepo.
import os