debmaker/lib/exec_in_chroot.sh

9 lines
96 B
Bash
Raw Normal View History

2022-02-20 15:02:18 +01:00
#!/bin/bash
if [ ! "$1" == "" ];
then
source /tmp/src/debmaker
2022-02-20 15:02:18 +01:00
FUNC=$1
shift
${FUNC} $*
fi