diff options
Diffstat (limited to 'runner')
| -rw-r--r-- | runner/base.go | 6 | ||||
| -rw-r--r-- | runner/create.go | 4 | ||||
| -rw-r--r-- | runner/exc/runner.go | 8 | ||||
| -rw-r--r-- | runner/exc/target.go | 8 | ||||
| -rw-r--r-- | runner/gnumake/make.go | 6 | ||||
| -rw-r--r-- | runner/gnumake/target.go | 4 | ||||
| -rw-r--r-- | runner/js/indexer.go | 2 | ||||
| -rw-r--r-- | runner/js/js.go | 6 | ||||
| -rw-r--r-- | runner/js/runner.go | 6 | ||||
| -rw-r--r-- | runner/js/target_npm.go | 4 | ||||
| -rw-r--r-- | runner/js/target_script.go | 8 | ||||
| -rw-r--r-- | runner/just/just.go | 6 | ||||
| -rw-r--r-- | runner/just/target.go | 4 | ||||
| -rw-r--r-- | runner/python/file.go | 8 | ||||
| -rw-r--r-- | runner/python/indexer.go | 2 | ||||
| -rw-r--r-- | runner/python/proj.go | 4 | ||||
| -rw-r--r-- | runner/python/runner.go | 6 | ||||
| -rw-r--r-- | runner/shell/hydrated.go | 8 | ||||
| -rw-r--r-- | runner/shell/shell.go | 10 | ||||
| -rw-r--r-- | runner/shell/target.go | 4 | ||||
| -rw-r--r-- | runner/stub.go | 2 |
21 files changed, 58 insertions, 58 deletions
diff --git a/runner/base.go b/runner/base.go index 4fcd3d0..d3cb98d 100644 --- a/runner/base.go +++ b/runner/base.go @@ -1,9 +1,9 @@ package runner import ( - "github.com/ewy1/pik/identity" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/paths" + "git.sr.ht/~ewy/pik/identity" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/paths" "path/filepath" "slices" "strings" diff --git a/runner/create.go b/runner/create.go index f67ac7e..ebac861 100644 --- a/runner/create.go +++ b/runner/create.go @@ -3,8 +3,8 @@ package runner import ( - "github.com/ewy1/pik/identity" - "github.com/ewy1/pik/model" + "git.sr.ht/~ewy/pik/identity" + "git.sr.ht/~ewy/pik/model" "github.com/stretchr/testify/assert" "os/exec" "testing" diff --git a/runner/exc/runner.go b/runner/exc/runner.go index 2eae44c..c6ae07f 100644 --- a/runner/exc/runner.go +++ b/runner/exc/runner.go @@ -1,10 +1,10 @@ package exc import ( - "github.com/ewy1/pik/identity" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" - "github.com/ewy1/pik/spool" + "git.sr.ht/~ewy/pik/identity" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" + "git.sr.ht/~ewy/pik/spool" "io/fs" "path/filepath" ) diff --git a/runner/exc/target.go b/runner/exc/target.go index 2e4cf29..5f3437f 100644 --- a/runner/exc/target.go +++ b/runner/exc/target.go @@ -1,10 +1,10 @@ package exc import ( - "github.com/ewy1/pik/describe" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" - "github.com/ewy1/pik/spool" + "git.sr.ht/~ewy/pik/describe" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" + "git.sr.ht/~ewy/pik/spool" "os/exec" ) diff --git a/runner/gnumake/make.go b/runner/gnumake/make.go index b2e2de2..93b523a 100644 --- a/runner/gnumake/make.go +++ b/runner/gnumake/make.go @@ -2,9 +2,9 @@ package gnumake import ( "errors" - "github.com/ewy1/pik/identity" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" + "git.sr.ht/~ewy/pik/identity" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" "io/fs" "os/exec" "path/filepath" diff --git a/runner/gnumake/target.go b/runner/gnumake/target.go index 8072c8c..d5caa24 100644 --- a/runner/gnumake/target.go +++ b/runner/gnumake/target.go @@ -1,8 +1,8 @@ package gnumake import ( - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" "os/exec" ) diff --git a/runner/js/indexer.go b/runner/js/indexer.go index 8a2a6b2..056c426 100644 --- a/runner/js/indexer.go +++ b/runner/js/indexer.go @@ -3,7 +3,7 @@ package js import ( "encoding/json" "errors" - "github.com/ewy1/pik/model" + "git.sr.ht/~ewy/pik/model" "io/fs" "os" "path/filepath" diff --git a/runner/js/js.go b/runner/js/js.go index 7c2af58..ec48f3e 100644 --- a/runner/js/js.go +++ b/runner/js/js.go @@ -2,9 +2,9 @@ package js import ( "errors" - "github.com/ewy1/pik/identity" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" + "git.sr.ht/~ewy/pik/identity" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" "os/exec" "path/filepath" "slices" diff --git a/runner/js/runner.go b/runner/js/runner.go index 8b5f4f1..22c03fc 100644 --- a/runner/js/runner.go +++ b/runner/js/runner.go @@ -1,9 +1,9 @@ package js import ( - "github.com/ewy1/pik/identity" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" + "git.sr.ht/~ewy/pik/identity" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" "io/fs" "path/filepath" "slices" diff --git a/runner/js/target_npm.go b/runner/js/target_npm.go index 8319fad..ad39114 100644 --- a/runner/js/target_npm.go +++ b/runner/js/target_npm.go @@ -1,8 +1,8 @@ package js import ( - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" "os/exec" "path/filepath" ) diff --git a/runner/js/target_script.go b/runner/js/target_script.go index 6ad213d..08310f0 100644 --- a/runner/js/target_script.go +++ b/runner/js/target_script.go @@ -1,10 +1,10 @@ package js import ( - "github.com/ewy1/pik/describe" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" - "github.com/ewy1/pik/spool" + "git.sr.ht/~ewy/pik/describe" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" + "git.sr.ht/~ewy/pik/spool" "os/exec" "path/filepath" ) diff --git a/runner/just/just.go b/runner/just/just.go index b8f605b..5eb158a 100644 --- a/runner/just/just.go +++ b/runner/just/just.go @@ -2,9 +2,9 @@ package just import ( "errors" - "github.com/ewy1/pik/identity" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" + "git.sr.ht/~ewy/pik/identity" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" "io/fs" "os/exec" "path/filepath" diff --git a/runner/just/target.go b/runner/just/target.go index 534185b..04ba8a2 100644 --- a/runner/just/target.go +++ b/runner/just/target.go @@ -1,8 +1,8 @@ package just import ( - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" "os/exec" ) diff --git a/runner/python/file.go b/runner/python/file.go index b6a3f3f..ae22962 100644 --- a/runner/python/file.go +++ b/runner/python/file.go @@ -1,10 +1,10 @@ package python import ( - "github.com/ewy1/pik/describe" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" - "github.com/ewy1/pik/spool" + "git.sr.ht/~ewy/pik/describe" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" + "git.sr.ht/~ewy/pik/spool" "os/exec" "path/filepath" ) diff --git a/runner/python/indexer.go b/runner/python/indexer.go index ff64fc8..2b3b347 100644 --- a/runner/python/indexer.go +++ b/runner/python/indexer.go @@ -1,7 +1,7 @@ package python import ( - "github.com/ewy1/pik/model" + "git.sr.ht/~ewy/pik/model" "github.com/pelletier/go-toml/v2" "io/fs" "os" diff --git a/runner/python/proj.go b/runner/python/proj.go index 5b02b58..351cbc8 100644 --- a/runner/python/proj.go +++ b/runner/python/proj.go @@ -1,8 +1,8 @@ package python import ( - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" "os/exec" "path/filepath" ) diff --git a/runner/python/runner.go b/runner/python/runner.go index 8d03f52..9318d67 100644 --- a/runner/python/runner.go +++ b/runner/python/runner.go @@ -2,9 +2,9 @@ package python import ( "errors" - "github.com/ewy1/pik/identity" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" + "git.sr.ht/~ewy/pik/identity" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" "io/fs" "os/exec" "path/filepath" diff --git a/runner/shell/hydrated.go b/runner/shell/hydrated.go index 440d9cd..5aefab8 100644 --- a/runner/shell/hydrated.go +++ b/runner/shell/hydrated.go @@ -1,10 +1,10 @@ package shell import ( - "github.com/ewy1/pik/describe" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" - "github.com/ewy1/pik/spool" + "git.sr.ht/~ewy/pik/describe" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" + "git.sr.ht/~ewy/pik/spool" ) type Hydrated struct { diff --git a/runner/shell/shell.go b/runner/shell/shell.go index 8bef032..37ca433 100644 --- a/runner/shell/shell.go +++ b/runner/shell/shell.go @@ -3,11 +3,11 @@ package shell import ( "bufio" "errors" - "github.com/ewy1/pik/identity" - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/paths" - "github.com/ewy1/pik/runner" - "github.com/ewy1/pik/spool" + "git.sr.ht/~ewy/pik/identity" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/paths" + "git.sr.ht/~ewy/pik/runner" + "git.sr.ht/~ewy/pik/spool" "io/fs" "os/exec" "path/filepath" diff --git a/runner/shell/target.go b/runner/shell/target.go index d1262af..2b0816a 100644 --- a/runner/shell/target.go +++ b/runner/shell/target.go @@ -1,8 +1,8 @@ package shell import ( - "github.com/ewy1/pik/model" - "github.com/ewy1/pik/runner" + "git.sr.ht/~ewy/pik/model" + "git.sr.ht/~ewy/pik/runner" "os/exec" ) diff --git a/runner/stub.go b/runner/stub.go index 6d4eff4..8fef3d4 100644 --- a/runner/stub.go +++ b/runner/stub.go @@ -3,7 +3,7 @@ package runner import ( - "github.com/ewy1/pik/model" + "git.sr.ht/~ewy/pik/model" "os/exec" ) |
