easy-osm2city/update-programs
merspieler 31c858ca04 Added help and a bit more print out to update-programs
Signed-off-by: merspieler <merspieler@airmail.cc>
2018-11-18 15:00:47 +01:00

33 lines
622 B
Bash
Executable file

#! /bin/bash
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
-h|--help)
echo "usage: update-programs [OPTIONS]"
echo "Updates easy-osm2city, osm2city and osm2city-data."
echo ""
echo "OPTIONS"
echo " -h, --help Shows this help and exit"
exit 0
;;
*)
echo "Unknown option $key"
exit 1
;;
esac
done
echo "Updateing easy-osm2city..."
git pull
echo "Updateing osm2city..."
cd osm2city
git pull
echo "Updating osm2city-data..."
cd ../osm2city-data
git pull