dotfiles/dot_local/scripts/executable_system-upgrade.sh

10 lines
206 B
Bash
Raw Normal View History

2020-06-15 08:59:14 +00: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 10:09:28 +00:00
echo $(date "+%s") > $dest
2020-06-15 08:59:14 +00:00