diff options
author | Florian Klink <flokli@flokli.de> | 2023-11-05T12·31+0200 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-11-06T08·34+0000 |
commit | c86de1b2c4d1b476f3d19c4eafe8e2e313c11cf5 (patch) | |
tree | 42eb08bf960664f97698b6c98761fc311b975269 /tvix/nar-bridge/pkg | |
parent | 72760b7716bad8434cd3548592688fadd6ca6abb (diff) |
chore(tvix/nar-bridge): bump castore-go r/6962
Change-Id: I81814ae326fb90ab50201cd06e3d9c0a3b15aec5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9958 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
Diffstat (limited to 'tvix/nar-bridge/pkg')
-rw-r--r-- | tvix/nar-bridge/pkg/importer/importer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/nar-bridge/pkg/importer/importer.go b/tvix/nar-bridge/pkg/importer/importer.go index a5c6bbaae901..679fc9b8ab14 100644 --- a/tvix/nar-bridge/pkg/importer/importer.go +++ b/tvix/nar-bridge/pkg/importer/importer.go @@ -210,7 +210,7 @@ func Import( fileNode := &castorev1pb.FileNode{ Name: []byte(getBasename(hdr.Path)), Digest: blobDigest, - Size: uint32(hdr.Size), + Size: uint64(hdr.Size), Executable: hdr.Executable, } if len(stack) > 0 { |