blob: adaddc3ca5b930037a115a623c5529ce425b3f3a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh -e
umask 022
test -d package || sh -cx '! : Wrong working directory.'
test -d compile || sh -cx '! : Wrong working directory.'
echo 'Checking commands in ./command...'
sh -cxe 'cd compile; exec make check'
|