Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fmt: onfileindir #295

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions internal/onfileindir/fileindir.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package onfileindir

import (
"fmt"
"github.com/OliveTin/OliveTin/internal/acl"
"github.com/OliveTin/OliveTin/internal/config"
"github.com/OliveTin/OliveTin/internal/executor"
"github.com/OliveTin/OliveTin/internal/filehelper"
"path/filepath"
"os"
"fmt"
"path/filepath"
)

func WatchFilesInDirectory(cfg *config.Config, ex *executor.Executor) {
Expand All @@ -30,8 +30,8 @@ func scheduleExec(action *config.Action, cfg *config.Config, ex *executor.Execut
args := map[string]string{
"filepath": path,
"filename": filepath.Base(path),
"filedir": filepath.Dir(path),
"fileext": filepath.Ext(path),
"filedir": filepath.Dir(path),
"fileext": filepath.Ext(path),
}

if stat, err := os.Stat(path); err == nil {
Expand All @@ -47,7 +47,7 @@ func scheduleExec(action *config.Action, cfg *config.Config, ex *executor.Execut
ActionTitle: action.Title,
Cfg: cfg,
Tags: []string{"fileindir"},
Arguments: args,
Arguments: args,
AuthenticatedUser: &acl.AuthenticatedUser{
Username: "fileindir",
},
Expand Down
Loading