diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-04-13 18:51:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-13 18:51:16 +0200 |
commit | f7e7f548499eff8d2df0872d1340ddcdfa028c45 (patch) | |
tree | 0f50b66364aed8550009b1f5c8fcd4034ca4c4f5 /tools/release/02_create_pr.ts | |
parent | d52613ebabe830bd0dd2376198986cb91f7470cd (diff) |
chore: use lock file for tooling scripts (#14253)
This commit adds lock file for maintenance scripts in "tools/"
directory.
The lock file is stored in "tools/deno.lock.json".
Diffstat (limited to 'tools/release/02_create_pr.ts')
-rwxr-xr-x | tools/release/02_create_pr.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/release/02_create_pr.ts b/tools/release/02_create_pr.ts index e64638277..93cbd64c2 100755 --- a/tools/release/02_create_pr.ts +++ b/tools/release/02_create_pr.ts @@ -1,4 +1,4 @@ -#!/usr/bin/env -S deno run --allow-read --allow-write --allow-env --allow-net --allow-run=cargo,git --no-check +#!/usr/bin/env -S deno run --allow-read --allow-write --allow-env --allow-net --allow-run=cargo,git --no-check --lock=tools/deno.lock.json // Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. import { DenoWorkspace } from "./deno_workspace.ts"; import { createOctoKit, getGitHubRepository } from "./deps.ts"; |