hotfix: date shows properly in commits
This commit is contained in:
parent
608c08c734
commit
a8ab9f05dc
1 changed files with 3 additions and 1 deletions
4
justfile
4
justfile
|
@ -1,7 +1,9 @@
|
|||
#!/usr/bin/env just --justfile
|
||||
|
||||
date := "$(date +'%Y-%m-%d %H:%M')"
|
||||
|
||||
# Backup documents
|
||||
backup:
|
||||
git add -A
|
||||
git commit -m 'backup: $(date +"%Y-%m-%d")'
|
||||
git commit -m "backup: {{date}}"
|
||||
git push
|
||||
|
|
Reference in a new issue