summary refs log tree commit diff
path: root/package/check
blob: 7662e7436980d1527be5f92310827b4ddfb7f17b (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -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'