Revision 43ee68ee3da973e301e1a2e5ce3623c2da47272c authored by James Lu on 19 May 2018, 19:45:58 UTC, committed by James Lu on 19 May 2018, 19:50:56 UTC
03c4529d9e3f6ce13c288fa1aa4bfb933288f27d made irc.state.history network specific, so reconnecting each network separately will update its history buffer's max length.
1 parent 2d084f4
Raw File
update-version
#!/usr/bin/env bash
echo -n "Updating version... "
perl -pi -e  "s/^version\s*=\s*['\"]([\S]+)[ '\"].*/version = '\1 ($( date -u -Iseconds ))'/" src/version.py
git add src/version.py && echo "done"

# vim: set ft=sh:
back to top