5 lines
85 B
Bash
5 lines
85 B
Bash
|
#!/bin/bash
|
||
|
pushd "$(dirname "$0")"
|
||
|
. venv/bin/activate
|
||
|
./build-appimage.py "$@"
|
||
|
popd
|