terminator/po/genpot.sh
Stephen Boddy 5b5ca89823 Workaround intltools inability to cope with files that have no extension, using temporary symlinks
when generating terminator.pot, so that reomtinator actually gets added now
2015-09-19 17:26:49 +02:00

12 lines
300 B
Bash
Executable File

#!/bin/sh
# Stupid workaround for intltools not handling extensionless files
ln -s terminator ../terminator.py
ln -s remotinator ../remotinator.py
# Make translation files
intltool-update -g terminator -o terminator.pot -p
# Cleanup after stupid workaround
rm ../terminator.py
rm ../remotinator.py