forked from wrenn/wrenn
Prototype with single host server and no admin panel (#2)
Reviewed-on: wrenn/sandbox#2 Co-authored-by: pptx704 <rafeed@omukk.dev> Co-committed-by: pptx704 <rafeed@omukk.dev>
This commit is contained in:
14
envd/internal/utils/rfsnotify.go
Normal file
14
envd/internal/utils/rfsnotify.go
Normal file
@ -0,0 +1,14 @@
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
package utils
|
||||
|
||||
import "path/filepath"
|
||||
|
||||
// FsnotifyPath creates an optionally recursive path for fsnotify/fsnotify internal implementation
|
||||
func FsnotifyPath(path string, recursive bool) string {
|
||||
if recursive {
|
||||
return filepath.Join(path, "...")
|
||||
}
|
||||
|
||||
return path
|
||||
}
|
||||
Reference in New Issue
Block a user