File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change
1
+ def build():
2
+ base(dev=True)
3
+ install.pixi()
4
+ shell("fish")
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ import (
24
24
25
25
const (
26
26
pixiVersion = "0.45.0"
27
- pixiRelease = "https://github.com/prefix-dev/pixi/releases/download/v%s/pixi-$(uname -m)-unknown-linux-musl.tar.gz"
28
27
pixiConfigTemplate = `
29
28
{{- if .UsePixiMirror -}}
30
29
[mirrors]
Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ func (g *generalGraph) compileDevPackages(root llb.State) llb.State {
228
228
sb .WriteString ("apt-get update && apt-get install -y apt-utils && " )
229
229
sb .WriteString ("apt-get install -y --no-install-recommends --no-install-suggests --fix-missing " )
230
230
sb .WriteString (strings .Join (types .BaseAptPackage , " " ))
231
- sb .WriteString ("&& rm -rf /var/lib/apt/lists/* " )
231
+ sb .WriteString ("&& rm -rf /var/lib/apt/lists/*" )
232
232
233
233
run := root .Run (llb .Shlexf (`bash -c "%s"` , sb .String ()),
234
234
llb .WithCustomName ("[internal] install built-in packages" ))
You can’t perform that action at this time.
0 commit comments