Skip to content

Commit b010f90

Browse files
committed
fix lint
1 parent 44cadf3 commit b010f90

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

pkgm.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ function standardPath() {
1414
homebrewPrefix = "/opt/homebrew"; // /usr/local is already in the path
1515
break;
1616
case "linux":
17-
homebrewPrefix = `/home/linuxbrew/.linuxbrew:${Deno.env.get("HOME")}/.linuxbrew`;
17+
homebrewPrefix = `/home/linuxbrew/.linuxbrew:${
18+
Deno.env.get("HOME")
19+
}/.linuxbrew`;
1820
break;
1921
}
2022
if (homebrewPrefix) {
@@ -145,12 +147,13 @@ async function install(args: string[]) {
145147
runtime_env,
146148
...to_install,
147149
];
148-
let cmd = ""
150+
let cmd = "";
149151
if (needs_sudo) {
150152
cmd = "/usr/bin/sudo";
151153
args.unshift(
152154
"-E", // we already cleared the env, it's safe
153-
"env", `PATH=${env.PATH}`,
155+
"env",
156+
`PATH=${env.PATH}`,
154157
);
155158
} else {
156159
cmd = args.shift()!;

0 commit comments

Comments
 (0)