Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a bug that changes of directory path for local in qlfile won't be synced with qlfile.lock #248

Merged
merged 1 commit into from
Jun 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/source/local.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,9 @@
(loop for (k v) on (rest source-params) by #'cddr
unless (eq k :version)
append (list k v)))))

(defmethod source= ((source1 source-local) (source2 source-local))
(and (string= (source-project-name source1)
(source-project-name source2))
(equal (source-local-path source1)
(source-local-path source2))))
Loading