summaryrefslogtreecommitdiff
path: root/runner/shell
diff options
context:
space:
mode:
authorewy <ewy0@protonmail.com>2026-05-02 15:14:15 +0200
committerewy <ewy0@protonmail.com>2026-05-02 15:14:15 +0200
commit5087803ef84e95e4e208dbc90db0f9af89dd1b9a (patch)
treea2e963dd99b57d55a408ac8045d04c3cddc63c10 /runner/shell
parent43a46a1a3a50e08d5a774c73a2528b877ac29451 (diff)
update module path
Diffstat (limited to 'runner/shell')
-rw-r--r--runner/shell/hydrated.go8
-rw-r--r--runner/shell/shell.go10
-rw-r--r--runner/shell/target.go4
3 files changed, 11 insertions, 11 deletions
diff --git a/runner/shell/hydrated.go b/runner/shell/hydrated.go
index dcd28be..981eb48 100644
--- a/runner/shell/hydrated.go
+++ b/runner/shell/hydrated.go
@@ -2,10 +2,10 @@ package shell
import (
"errors"
- "pik/describe"
- "pik/model"
- "pik/runner"
- "pik/spool"
+ "git.ewy.one/pik/describe"
+ "git.ewy.one/pik/model"
+ "git.ewy.one/pik/runner"
+ "git.ewy.one/pik/spool"
)
type Hydrated struct {
diff --git a/runner/shell/shell.go b/runner/shell/shell.go
index c4513c9..792a7c3 100644
--- a/runner/shell/shell.go
+++ b/runner/shell/shell.go
@@ -3,14 +3,14 @@ package shell
import (
"bufio"
"errors"
+ "git.ewy.one/pik/identity"
+ "git.ewy.one/pik/indexers/pikdex"
+ "git.ewy.one/pik/model"
+ "git.ewy.one/pik/runner"
+ "git.ewy.one/pik/spool"
"io/fs"
"os/exec"
"path/filepath"
- "pik/identity"
- "pik/indexers/pikdex"
- "pik/model"
- "pik/runner"
- "pik/spool"
"slices"
"strings"
"sync"
diff --git a/runner/shell/target.go b/runner/shell/target.go
index 9c53617..b37f812 100644
--- a/runner/shell/target.go
+++ b/runner/shell/target.go
@@ -1,9 +1,9 @@
package shell
import (
+ "git.ewy.one/pik/model"
+ "git.ewy.one/pik/runner"
"os/exec"
- "pik/model"
- "pik/runner"
)
type Target struct {