#!/bin/bash

if extrepo search thisrepodoesnotexist 2>/dev/null
then
	echo "failed: return value does not indicate failure"
	exit 1
else
	echo "ok"
fi
