debmaker/lib/exec_in_chroot.sh

9 lines
96 B
Bash
Executable File

#!/bin/bash
if [ ! "$1" == "" ];
then
source /tmp/src/debmaker
FUNC=$1
shift
${FUNC} $*
fi