blob: d963d6f9ce6e8e7dde239bf41fee1634ad6e2eeb [file] [log] [blame]
#!/bin/bash
usage () {
echo "Usage: $0 apex_whitelist_file apex_contents_file"
}
if [[ $# -ne 2 ]]; then
usage
exit 1
fi
echo "Adding following files to $1:"
diff \
--unchanged-group-format='' \
--changed-group-format='%<' \
$2 $1
cat $1 $2 | sort -u > $1