Skip to content

Commit

Permalink
deno: try to fix (os error 13) on ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
balupton committed Sep 15, 2024
1 parent 2e4d9da commit e2294c4
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion commands.beta/wallhaven-helper.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S deno run --allow-net --quiet --no-config
#!/usr/bin/env -S deno run --allow-net --quiet --no-config --no-lock --no-npm --no-remote --cached-only
// deno-lint-ignore-file no-explicit-any
const [apikey, username, collection] = Deno.args
if (!apikey || !username || !collection) {
Expand Down
2 changes: 1 addition & 1 deletion commands/brew-installed.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S deno run --quiet --no-config
#!/usr/bin/env -S deno run --quiet --no-config --no-lock --no-npm --no-remote --cached-only
// deno-lint-ignore-file no-explicit-any

// parse stdin
Expand Down
1 change: 1 addition & 0 deletions commands/echo-regexp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
# trunk-ignore-all(shellcheck/SC2016)

function echo_regexp_test() (
source "$DOROTHY/sources/bash.bash"
Expand Down
2 changes: 1 addition & 1 deletion commands/echo-regexp.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S deno run --quiet --no-config
#!/usr/bin/env -S deno run --quiet --no-config --no-lock --no-npm --no-remote --cached-only
const flags = new Set((Deno.args[0] || '').replace(/^-/, '').split(''))
const fail = flags.has('f')
const counting = flags.has('c')
Expand Down
2 changes: 1 addition & 1 deletion commands/get-url-domain.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S deno run --quiet --no-config
#!/usr/bin/env -S deno run --quiet --no-config --no-lock --no-npm --no-remote --cached-only

if (Deno.args.length === 0) throw new Error('USAGE: get-url-domain.ts <url>')

Expand Down
2 changes: 1 addition & 1 deletion commands/get-url-protocol.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S deno run --quiet --no-config
#!/usr/bin/env -S deno run --quiet --no-config --no-lock --no-npm --no-remote --cached-only

if (Deno.args.length === 0) throw new Error('USAGE: get-url-domain.ts <url>')

Expand Down
4 changes: 2 additions & 2 deletions commands/setup-util-shellcheck
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env bash
# trunk-ignore-all(shellcheck/SC1073)
# trunk-ignore-all(shellcheck/SC1072)

# https://github.com/koalaman/shellcheck#installing

# https://github.com/koalaman/shellcheck/releases
# trunk-ignore-all(shellcheck/SC1073)
# trunk-ignore-all(shellcheck/SC1072)
# shellcheck-v0.9.0.darwin.x86_64.tar.xz
# shellcheck-v0.9.0.linux.aarch64.tar.xz
# shellcheck-v0.9.0.linux.armv6hf.tar.xz
Expand Down

0 comments on commit e2294c4

Please sign in to comment.