mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 00:15:43 +03:00
10 lines
158 B
Go
10 lines
158 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package allocdir
|
|
|
|
// currently a noop on non-Linux platforms
|
|
func (t *TaskDir) unmountSpecialDirs() error {
|
|
return nil
|
|
}
|