blob: 898774bdca4d34a62aa9f4c628c9a16de0e8f955 [file] [log] [blame]
// +build !windows
package layer
import "runtime"
// setOS writes the "os" file to the layer filestore
func (fm *fileMetadataTransaction) setOS(os string) error {
return nil
}
// getOS reads the "os" file from the layer filestore
func (fms *fileMetadataStore) getOS(layer ChainID) (string, error) {
return runtime.GOOS, nil
}