aboutsummaryrefslogtreecommitdiff
path: root/internal/cond
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cond')
-rw-r--r--internal/cond/compile.go6
-rw-r--r--internal/cond/compile_test.go2
-rw-r--r--internal/cond/eval.go2
-rw-r--r--internal/cond/eval_test.go2
-rw-r--r--internal/cond/types.go2
5 files changed, 7 insertions, 7 deletions
diff --git a/internal/cond/compile.go b/internal/cond/compile.go
index 6580ee9..42617be 100644
--- a/internal/cond/compile.go
+++ b/internal/cond/compile.go
@@ -10,9 +10,9 @@ import (
"sort"
"strings"
- "krino/internal/config"
- "krino/internal/norm"
- "krino/internal/sexp"
+ "git.labunix.xyz/krino/internal/config"
+ "git.labunix.xyz/krino/internal/norm"
+ "git.labunix.xyz/krino/internal/sexp"
)
// maxDepth is the deepest a condition may nest; the top-level conditions
diff --git a/internal/cond/compile_test.go b/internal/cond/compile_test.go
index 8432365..d9830d9 100644
--- a/internal/cond/compile_test.go
+++ b/internal/cond/compile_test.go
@@ -7,7 +7,7 @@ import (
"strings"
"testing"
- "krino/internal/sexp"
+ "git.labunix.xyz/krino/internal/sexp"
)
func nodes(t *testing.T, src string) []*sexp.Node {
diff --git a/internal/cond/eval.go b/internal/cond/eval.go
index 2c35dba..2ae31fb 100644
--- a/internal/cond/eval.go
+++ b/internal/cond/eval.go
@@ -8,7 +8,7 @@ import (
"strings"
"time"
- "krino/internal/norm"
+ "git.labunix.xyz/krino/internal/norm"
)
// Facts is what a condition may ask about one file. Implementations
diff --git a/internal/cond/eval_test.go b/internal/cond/eval_test.go
index 73e0ea6..5074557 100644
--- a/internal/cond/eval_test.go
+++ b/internal/cond/eval_test.go
@@ -10,7 +10,7 @@ import (
"testing"
"time"
- "krino/internal/norm"
+ "git.labunix.xyz/krino/internal/norm"
)
var now = time.Date(2026, 9, 11, 12, 0, 0, 0, time.UTC)
diff --git a/internal/cond/types.go b/internal/cond/types.go
index 97e761a..791ccba 100644
--- a/internal/cond/types.go
+++ b/internal/cond/types.go
@@ -8,7 +8,7 @@ import (
"regexp"
"time"
- "krino/internal/sexp"
+ "git.labunix.xyz/krino/internal/sexp"
)
// Options carries a rule's resolved case and fold settings into compilation.