#!/bin/bash

# 
	CURRDIR=`pwd`
	UPDATEDIR=$(dirname "$0")
	
	cd $UPDATEDIR
	
	if [ $# -eq 0 ]
		then
			./updateAmda -u -r
		else 
			./updateAmda -u -r -s
	fi
	
	cd $CURRDIR