default_pre_build &&
cd $SOURCE_DIRECTORY &&
if [[ $VIMPROBABLE_OWN_CONFIGH == y ]]; then
# check if the config file actually exists before attempting to copy it in
# do not break if it isn't there
if [[ -e $VIMPROBABLE_CONFIGH ]]; then
message "File exists copying..."
cp -v $VIMPROBABLE_CONFIGH $SOURCE_DIRECTORY/config.h
else
message "File ${QUERY_COLOR}${VIMPROBABLE_CONFIGH}${DEFAULT_COLOR} does not exist..."
fi
fi
