dotfiles/bin/commit-pkglist

10 lines
350 B
Plaintext
Raw Normal View History

2019-12-23 03:44:26 +00:00
#!/usr/bin/env sh
# Simply commits the package lists `packages.txt` and `aur-packages.txt` into the Git repo.
# This script is specifically used for a cron job where this is run monthly.
DOTFILES_DIRECTORY="$HOME/dotfiles"
cd "$DOTFILES_DIRECTORY"
git add "packages.txt" "aur-packages.txt"
2019-12-23 03:44:26 +00:00
git commit -m "Update package lists as of $(date +%F)"