github.com/apptainer/singularity@v3.1.1+incompatible/internal/pkg/build/sources/packer_sif_unsupported.go (about) 1 // Copyright (c) 2019, Sylabs Inc. All rights reserved. 2 // This software is licensed under a 3-clause BSD license. Please consult the 3 // LICENSE.md file distributed with the sources of this project regarding your 4 // rights to use or distribute this software. 5 6 // +build !linux 7 8 package sources 9 10 import ( 11 "fmt" 12 13 "github.com/sylabs/singularity/pkg/build/types" 14 ) 15 16 // Pack puts relevant objects in a Bundle! 17 func (p *SIFPacker) Pack() (*types.Bundle, error) { 18 return nil, fmt.Errorf("unsupported on this platform") 19 }