Skip to content

Commit a735e64

Browse files
committed
lint fix
1 parent 85b2c95 commit a735e64

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

internal/devpkg/package.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -482,9 +482,10 @@ func (p *Package) PathInLocalStore() (string, error) {
482482
}
483483

484484
ux.Fwarning(
485-
os.Stderr,
486-
"calculating local_store_path. This may be slow.\n" +
487-
"Run `devbox update` to speed this up for next time.")
485+
os.Stderr,
486+
"calculating local_store_path. This may be slow.\n"+
487+
"Run `devbox update` to speed this up for next time.",
488+
)
488489
localPath, err := nix.ContentAddressedStorePath(sysInfo.BinaryStorePath)
489490
if err != nil {
490491
return "", err

internal/lock/resolve.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ func buildLockSystemInfos(pkg *searcher.PackageVersion) (map[string]*SystemInfo,
8787

8888
sysInfos := map[string]*SystemInfo{}
8989
for sysName, sysInfo := range pkg.Systems {
90-
90+
9191
// guard against missing search data
9292
if sysInfo.StoreHash == "" || sysInfo.StoreName == "" {
9393
continue

0 commit comments

Comments
 (0)