Skip to content

Commit

Permalink
chore: migrate justfile to import
Browse files Browse the repository at this point in the history
ublue-os/config#178

Also changes to relative imports for less clutter.
  • Loading branch information
xynydev authored Dec 27, 2023
1 parent ec020cd commit d715e01
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions files/usr/share/ublue-os/just/100-bling.just
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
!include /usr/share/ublue-os/just/bling/distrobox.just
!include /usr/share/ublue-os/just/bling/gaming.just
!include /usr/share/ublue-os/just/bling/nix.just
!include /usr/share/ublue-os/just/bling/shells.just
import bling/distrobox.just
import bling/gaming.just
import bling/nix.just
import bling/shells.just

2 comments on commit d715e01

@fiftydinar
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Paths should use single quotes:

import 'bling/distrobox.just'
import 'bling/gaming.just'
import 'bling/nix.just'
import 'bling/shells.just'

@xynydev
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adressed.

Please sign in to comment.