Skip to content

Commit

Permalink
bypass y/n
Browse files Browse the repository at this point in the history
  • Loading branch information
ashpect committed Aug 27, 2024
1 parent aa0c6a7 commit d0fed5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/env/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func (e Env) RuntimeEnv() Env {
func (e Env) Base() Env {
e.state = e.state.Run(llb.Shlex("apt-get update")).
Run(llb.Shlex("apt-get -y --no-install-recommends install git ca-certificates")).
Run(llb.Shlex("apt install npm")). // Maybe a better option would be to make a check in metacall environment installation and make langauge specific some installs
Run(llb.Shlex("apt -y install npm")). // Maybe a better option would be to make a check in metacall environment installation and make langauge specific some installs
Root()

return e
Expand Down

0 comments on commit d0fed5e

Please sign in to comment.