mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 04:57:57 +00:00
9 lines
365 B
Bash
9 lines
365 B
Bash
#!/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"
|
|
|
|
git add "$DOTFILES_DIRECTORY/packages.txt" "$DOTFILES_DIRECTORY/aur-packages.txt"
|
|
git commit -m "Update package lists as of $(date +%F)" |