#!/bin/sh
#
# installXResource - install an X resource file
#
# SYNOPSIS: installXResource source dest


# We add a check for resource file existance before the installFile


if [ -f $1 ]
then
	installFile -m 644 $1 $2
fi


