1
#!/bin/sh
2
3
dir="$1"
4
5
# Add /usr/local to path (for FreeBSD)
6
PATH=$PATH:/usr/bin:/usr/local/bin
7
8
last=`ls -1rt "$dir" | tail -n 1`
9
if [ "$last" != "_atom.xml" ]; then
10
    `dirname $0`/make-atom.py "$dir"
11
fi