1
1
scripts/test.sh

17 lines
117 B
Bash
Raw Normal View History

2011-01-20 23:00:27 +01:00
#!/bin/bash
update()
{
git pull origin master
}
if [ $1 = "update" ]; then
update
fi
echo "end of script"