Skip to content

Commit

Permalink
fix: workaround p-vector-rs bug where path was set to '.'
Browse files Browse the repository at this point in the history
  • Loading branch information
jiegec committed Jun 15, 2024
1 parent d0c35ba commit 9adf690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ pub const SQL_GET_PACKAGE_DEB_FILES: &str = r#"
SELECT
(
CASE
WHEN path = '' THEN ''
WHEN path = '' OR path = '.' THEN ''
ELSE '/' || path
END
) || '/' || "name" filename,
Expand Down

0 comments on commit 9adf690

Please sign in to comment.