-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: replace Makefile with Justfile
- Loading branch information
Showing
2 changed files
with
10 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# just(Justfile) is a task runner similar to gnumake(Makefile), but simpler | ||
|
||
deploy: | ||
sudo guix system reconfigure ./config.scm | ||
|
||
pull: | ||
echo "Pulling all channel's git repositories..." | ||
echo "Based on the gap between the current commit and the latest commit of guix's official repo, this operation may take a while..." | ||
guix pull --channels=./channels.scm | ||
guix describe --format=channels > ./channels-lock.scm |