Skip to content

Commit 0947110

Browse files
committedJan 3, 2024
fix: include lib/pg-queue/.sqlx directory for voyager
1 parent 17c92d1 commit 0947110

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎voyager/voyager.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
voyager = crane.buildWorkspaceMember {
55
crateDirFromRoot = "voyager";
66
additionalSrcFilter = path: _:
7-
pkgs.lib.hasPrefix ".sqlx" path;
7+
(pkgs.lib.hasPrefix ".sqlx" path) ||
8+
(pkgs.lib.hasPrefix "lib/pg-queue/.sqlx" path);
89
additionalTestSrcFilter = path: _:
910
pkgs.lib.hasPrefix "hubble/src/graphql" path;
1011
# temporarily, to keep warnings in-editor until i fix them

0 commit comments

Comments
 (0)
Please sign in to comment.