Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions hamdb
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,17 @@ WGET_HEADER="Accept: text/html"
WGET_USER_AGENT="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko)"

# if today is Monday, get the full file, otherwise get a smaller daily update file
if [ ${DAY} == sun ]; then
if [ "${DAY}" == sun ]; then
FULLIMPORT=1
else
FULLIMPORT=0
fi

if [ ${1} == full ]; then
if [ "${1}" == "full" ]; then
FULLIMPORT=1
fi

if [ ${1} == getfccfile ]; then
if [ "${1}" == "getfccfile" ]; then
FULLIMPORT=1
fi

Expand Down