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