Skip to content
Snippets Groups Projects
Commit a27febf5 authored by Ramin Yaghoubzadeh's avatar Ramin Yaghoubzadeh
Browse files

python resolve bug fixed

parent ce2bc242
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,11 @@ for P in $REQ $OPT; do
files=(../$P/dist/scripts/*);
[ "$files" ] && cp -a ../$P/dist/scripts/* deps/scripts/
files=(../$P/dist/python/*.zip);
[ "$files" ] && for zipfile in ../$P/dist/python/*.zip ../$P/dist/*.py.zip; do
[ "$files" ] && for zipfile in ../$P/dist/python/*.zip; do
unzip -oqq $zipfile -d deps/python
done
files=(../$P/dist/*.py.zip);
[ "$files" ] && for zipfile in ../$P/dist/*.py.zip; do
unzip -oqq $zipfile -d deps/python
done
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment