#!/bin/sh

REPO_DIR=/home/martyn/debian/
CURRENT_DIR=`pwd`
DIST="$1"
COMPONENT="$2"

if [ -z "$DIST" ] || [ -z "$COMPONENT" ]; then
    echo "Usage is assert.sh <dist> <component>"
    exit 1;
fi

mkdir -p $REPO_DIR/dists/$DIST/$COMPONENT/binary-amd64
mkdir -p $REPO_DIR/dists/$DIST/$COMPONENT/binary-i386
mkdir -p $REPO_DIR/dists/$DIST/$COMPONENT/binary-all
