pkger/apply_debug.go

27 lines
510 B
Go
Raw Normal View History

2019-09-22 23:47:40 +03:00
// +build debug
package pkger
import (
"os"
"github.com/markbates/pkger/pkging"
"github.com/markbates/pkger/pkging/pkgutil"
)
2019-10-18 00:03:04 +03:00
// Apply will wrap the current implementation
// of pkger.Pkger with the new pkg. This allows
// for layering of pkging.Pkger implementations.
2019-09-22 23:47:40 +03:00
func Apply(pkg pkging.Pkger, err error) error {
gil.Lock()
defer gil.Unlock()
2019-10-16 18:07:57 +03:00
if err != nil {
return err
}
2019-09-22 23:47:40 +03:00
if err := pkgutil.Dump(os.Stdout, pkg); err != nil {
return err
}
current = pkging.Wrap(current, pkg)
return nil
}