13 lines
241 B
Makefile
13 lines
241 B
Makefile
# The default command to run when ran with just 'just'
|
|
[group('General')]
|
|
default: help
|
|
|
|
# Print the available commands
|
|
[group('General')]
|
|
help:
|
|
@just --list
|
|
|
|
# Update project dependencies
|
|
[group('General')]
|
|
update:
|
|
nix flake update
|