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