#!/bin/sh
# script to generate tarball
set -e

name=desktop-common-data
giturl="git://git.mageia.org/software/desktop/common-data"

cd $(dirname $0)
[ -d $name.git ] || git clone -s $giturl $name.git
cd $name.git
make dist-git
