10 lines
217 B
Bash
Executable File
10 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd src
|
|
|
|
if [ -f debian/control ]; then
|
|
echo "Installing build dependencies..."
|
|
apt-get update
|
|
mk-build-deps -r -t "apt-get --force-yes -y --no-install-recommends" --install debian/control
|
|
fi
|