dotfiles/dot_local/scripts/executable_system-upgrade.sh

10 lines
206 B
Bash
Raw Normal View History

2020-06-15 03:59:14 -05:00
#!/bin/bash
# Performs system upgrade using topgrade
# Then writes the time of last update into dest
dest=$HOME/.config/last-system-upgrade
topgrade --no-retry --verbose --yes
2020-06-15 05:09:28 -05:00
echo $(date "+%s") > $dest
2020-06-15 03:59:14 -05:00