File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -5,5 +5,4 @@ pynsca==1.5
55PyYAML == 3.12
66boto == 2.45.0
77filechunkio == 1.8
8- yconf == 0.3.3
98python-dateutil == 2.2
Original file line number Diff line number Diff line change @@ -94,13 +94,22 @@ if [ -d ${srcdir} ]; then
9494 exit 1
9595 fi
9696
97+ # Get git HEAD of yconf
98+ if [ -d ${tmpdir} /yconf ]; then
99+ pushd ${tmpdir} /yconf
100+ git pull
101+ popd
102+ else
103+ git clone https://github.com/kampka/yconf ${tmpdir} /yconf
104+ fi
105+
97106 if [ ! -d ${pexdir} ]; then
98107 mkdir -p ${pexdir}
99108 else
100109 rm -f ${pexdir} /build/mongodb_consistent_backup-* .whl
101110 fi
102111 [ ! -d ${bindir} ] && mkdir -p ${bindir}
103- ${venvdir} /bin/python2.7 ${venvdir} /bin/pex -o ${output_file} -m ${mod_name} -r ${require_file} --pex-root=${pexdir} ${builddir}
112+ ${venvdir} /bin/python2.7 ${venvdir} /bin/pex -o ${output_file} -m ${mod_name} -r ${require_file} --pex-root=${pexdir} ${builddir} ${tmpdir} /yconf
104113 if [ $? -lt 1 ] && [ -x ${output_file} ]; then
105114 echo " pex executable written to '$output_file '"
106115 else
You can’t perform that action at this time.
0 commit comments