repo.or.cz
/
dpkg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
po: Update German man pages translation
[dpkg.git]
/
scripts
/
t
/
mock-bin
/
dpkg
blob
fbfba35aa51c628fa80151aeb1041096fc110c4f
1
#!/bin/sh
2
3
set -e
4
5
args
=
"$@"
6
7
while
[
$#
-gt
0
];
do
8
opt
=
"
$1
"
9
shift
10
11
case
"
$opt
"
in
12
--print-architecture
)
13
echo
amd64
14
exit
0
15
esac
16
done
17
18
# Otherwise fail hard.
19
echo
"
$0
: unsupported command (
$args
) in mock wrapper"
20
exit
1