default_pre_build &&
cd $SOURCE_DIRECTORY &&
if [[ $VIMPROBABLE_OWN_HPATH == 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_HPATH/config.h ]]; then
message "File exists copying..."
cp -v $VIMPROBABLE_HPATH/config.h $SOURCE_DIRECTORY/config.h
else
message "File ${QUERY_COLOR}${VIMPROBABLE_HPATH/config.h}${DEFAULT_COLOR} does not exist..."
fi &&

if [[ -e $VIMPROBABLE_HPATH/keymap.h ]]; then
message "File exists copying..."
cp -v $VIMPROBABLE_HPATH/keymap.h $SOURCE_DIRECTORY/keymap.h
else
message "File ${QUERY_COLOR}${VIMPROBABLE_HPATH/keymap.h}${DEFAULT_COLOR} does not exist..."
fi
fi
