Skip to content
Snippets Groups Projects
Verified Commit aa86d894 authored by Louis Abel's avatar Louis Abel :tv:
Browse files

update-comps should be checking for distro usage

parent d5014e65
No related branches found
No related tags found
No related merge requests found
......@@ -3,9 +3,9 @@
COMPSFILE=$1
DISTRO=$2
if [ -z "$COMPSFILE" ]; then
echo "Usage: $0 <compsfile>"
exit 1
if [ -z "$COMPSFILE" ] || [ -z "$DISTRO" ]; then
echo "Usage: $0 <compsfile> <distro>"
exit 1
fi
LANG=C intltool-merge -x -u po/ $COMPSFILE.in $COMPSFILE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment