mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
parent
b76604183d
commit
97009a2d8e
1 changed files with 9 additions and 1 deletions
|
@ -54,7 +54,15 @@ build:
|
||||||
mkdir -p {{prefix}}/share
|
mkdir -p {{prefix}}/share
|
||||||
mv prompts {{prefix}}/share
|
mv prompts {{prefix}}/share
|
||||||
|
|
||||||
- install -D convert.py $VIRTUAL_ENV/bin/convert.py
|
- |
|
||||||
|
if test -f convert.py; then
|
||||||
|
install -D convert.py $VIRTUAL_ENV/bin/convert.py
|
||||||
|
elif test -f examples/convert-legacy-llama.py; then
|
||||||
|
install -D examples/convert-legacy-llama.py $VIRTUAL_ENV/bin/convert.py
|
||||||
|
else
|
||||||
|
echo "No convert.py found"
|
||||||
|
false
|
||||||
|
fi
|
||||||
|
|
||||||
- |
|
- |
|
||||||
bkpyvenv stage {{prefix}} {{version}}
|
bkpyvenv stage {{prefix}} {{version}}
|
||||||
|
|
Loading…
Reference in a new issue