File: run

package info (click to toggle)
ocaml-obuild 0.1.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 796 kB
  • sloc: ml: 6,570; sh: 171; ansic: 34; makefile: 11
file content (15 lines) | stat: -rwxr-xr-x 306 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

export OBUILDSIMPLE=$(pwd)/../../dist/build/obuild-simple/obuild-simple

for BUILD in *.build
do
	name=${BUILD/.build/}
	echo "======== $name ========================="
	sh ./${BUILD}
	if [ ! -f $name ]; then
		echo "[FAILED] building $name "
	else
		echo "[SUCCESS] building $name "
	fi
done