14 lines
238 B
Text
14 lines
238 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:manual \
|
||
|
--build-arg YCM_PYTHON=py3 \
|
||
|
image/
|