Skip to content

Commit

Permalink
Merge pull request #3 from fahedouch/support-more-runtime-os
Browse files Browse the repository at this point in the history
add more platforms
  • Loading branch information
fahedouch authored Jul 10, 2022
2 parents 97617e7 + 868bf58 commit 3e5042d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions logrotate_freebsd.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package logrotate

import (
"os"
)

func chown(_ string, _ os.FileInfo) error {
return nil
}
9 changes: 9 additions & 0 deletions logrotate_windows.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package logrotate

import (
"os"
)

func chown(_ string, _ os.FileInfo) error {
return nil
}

0 comments on commit 3e5042d

Please sign in to comment.