File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff 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 ( ) ! ;
You can’t perform that action at this time.
0 commit comments