Skip to content

Commit

Permalink
stdlib/os: fixed typo in container.cue (dest cache folder was always …
Browse files Browse the repository at this point in the history
…"true")

Signed-off-by: Sam Alba <sam.alba@gmail.com>
  • Loading branch information
samalba committed Jun 9, 2021
1 parent e2a8607 commit b41adbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stdlib/os/container.cue
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@ import (
"\(dest)": o
// FIXME: support source path
}
for dest in cache {
for dest, _ in cache {
"\(dest)": "cache"
}
for dest in tmpfs {
for dest, _ in tmpfs {
"\(dest)": "tmpfs"
}
}
Expand Down

0 comments on commit b41adbd

Please sign in to comment.