#!/usr/bin/env bash set -e if [ "$1" = "--continue" ]; then OPTS="" else OPTS="--no-cache" fi docker build ${OPTS} -t youcompleteme/ycm-vim-py2:test \ --build-arg YCM_VIM_PYTHON=python \ image/ docker build ${OPTS} -t youcompleteme/ycm-vim-py3:test \ --build-arg YCM_VIM_PYTHON=python3 \ image/