root/autobuild/scripts/common @ 912

Revision 912, 224 bytes (checked in by moo, 11 months ago)

compatibility

RevLine 
[905]1#!/bin/sh
2
[912]3if [[ ! -f ./.config ]]; then
[905]4    echo "Missing .config in ./" >&2
5    exit 1
6fi
7
8if [[ -f ./"test" ]]; then
9    isTest=1
10    . ./test
11    VERBOSE=-v
12else
13    isTest=""
14    VERBOSE=
15fi
16
17. scripts/utils
18. scripts/autobuild
[912]19. ./.config
Note: See TracBrowser for help on using the browser.