po: Update German man pages translation
[dpkg.git] / scripts / t / mock-bin / dpkg
blobfbfba35aa51c628fa80151aeb1041096fc110c4f
1 #!/bin/sh
3 set -e
5 args="$@"
7 while [ $# -gt 0 ]; do
8 opt="$1"
9 shift
11 case "$opt" in
12 --print-architecture)
13 echo amd64
14 exit 0
15 esac
16 done
18 # Otherwise fail hard.
19 echo "$0: unsupported command ($args) in mock wrapper"
20 exit 1