diff options
| author | ewy <ewy0@protonmail.com> | 2026-04-17 00:24:48 +0200 |
|---|---|---|
| committer | ewy <ewy0@protonmail.com> | 2026-04-17 00:24:48 +0200 |
| commit | 945f09ad71e046337ba6d651b05e2c0c6b132c4e (patch) | |
| tree | 5e48c341c5978e455cbcae42e0139be0569340b6 /runner | |
| parent | 2aaa6cd8a0f689dc60a4c110a6d1aae40c170e26 (diff) | |
buffer descriptions (my bad, i forgot)
Diffstat (limited to 'runner')
| -rw-r--r-- | runner/shell/hydrated.go | 2 | ||||
| -rw-r--r-- | runner/shell/shell.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/runner/shell/hydrated.go b/runner/shell/hydrated.go index 7ead74c..1ecce51 100644 --- a/runner/shell/hydrated.go +++ b/runner/shell/hydrated.go @@ -17,7 +17,7 @@ func (h *Hydrated) Icon() string { } func (h *Hydrated) Description() string { - desc, err := describe.Describe(h.BaseTarget.Script) + desc, err := describe.Describe(h.BaseTarget, h.BaseTarget.Script) if err != nil { spool.Warn("%v\n", err) return "" diff --git a/runner/shell/shell.go b/runner/shell/shell.go index c9d7134..a184182 100644 --- a/runner/shell/shell.go +++ b/runner/shell/shell.go @@ -97,7 +97,7 @@ func (s *shell) CreateTarget(fs fs.FS, src string, file string, _ fs.DirEntry) ( MyTags: model.TagsFromFilename(filename), }, Shell: shell, - Script: filepath.Join(src, file), + Script: file, SubValue: sub, }, nil } |
