mirror of
https://pagure.io/fedora-comps.git
synced 2024-12-21 12:38:31 +01:00
11 lines
161 B
Bash
Executable file
11 lines
161 B
Bash
Executable file
#!/bin/sh
|
|
|
|
COMPSFILE=$1
|
|
|
|
if [ -z "$COMPSFILE" ]; then
|
|
echo "Usage: $0 <compsfile>"
|
|
exit 1
|
|
fi
|
|
|
|
LANG=C intltool-merge -x -u po/ $COMPSFILE.in $COMPSFILE
|
|
|