-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add flatpak support #26
Conversation
nfiles.lisp
Outdated
(defmethod resolve ((profile profile) (file config-file)) | ||
(maybe-xdg #'uiop:xdg-config-home (call-next-method))) | ||
#-flatpak |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could just move this branch to line 303 above instead, that way you don't have to put it everywhere.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See how nfiles.lisp
now looks like. Is this what you had in mind?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yet another alternative: put them all inside a single progn
and only use feature expression on this progn
. That still counts as top level form, while being much easier to include/exclude 😃
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good. See 13e36bf.
Looks good to me, please squash before merging. Thanks! |
Perfect, thank you. |
13e36bf
to
3626e8d
Compare
Thanks! |
Addresses atlas-engineer/nyxt#3044.