mirror of
https://github.com/kbumsik/VirtScreen.git
synced 2025-02-15 04:41:50 +00:00
11 lines
139 B
Bash
Executable file
11 lines
139 B
Bash
Executable file
#!/bin/bash
|
|
|
|
source _common.sh
|
|
|
|
cd build
|
|
cd virtscreen-$PKGVER
|
|
if [ $1 = "virtualenv" ]; then
|
|
dpkg-buildpackage -b
|
|
else
|
|
debuild
|
|
fi
|