summaryrefslogtreecommitdiff
path: root/std/installer
diff options
context:
space:
mode:
authorRy Dahl <ry@tinyclouds.org>2020-01-02 15:13:47 -0500
committerGitHub <noreply@github.com>2020-01-02 15:13:47 -0500
commitbfab4ed0dfa5e2034005133a257201c934bc3a80 (patch)
treecd53471ad241770d3cd9a9da6246463d92e0ebeb /std/installer
parentb0761138e5d2486c241ab8fdfa67fe2c2a0b621b (diff)
Happy new year! (#3578)
Diffstat (limited to 'std/installer')
-rw-r--r--std/installer/mod.ts2
-rw-r--r--std/installer/test.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/std/installer/mod.ts b/std/installer/mod.ts
index 7751bc12e..b39121ab9 100644
--- a/std/installer/mod.ts
+++ b/std/installer/mod.ts
@@ -1,5 +1,5 @@
#!/usr/bin/env -S deno --allow-all
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
const { env, stdin, args, exit, writeFile, chmod, run } = Deno;
import { parse } from "../flags/mod.ts";
import { exists } from "../fs/exists.ts";
diff --git a/std/installer/test.ts b/std/installer/test.ts
index 371cbdfa0..5239dc157 100644
--- a/std/installer/test.ts
+++ b/std/installer/test.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.
const { run, stat, makeTempDir, remove, env, readAll } = Deno;
import { test, runIfMain, TestFunction } from "../testing/mod.ts";