mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add OpenCV Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Mark packages from successful builds as automatically buildable. * add_opencv: Package File Update Run on linux/amd64 container. * add_opencv: Package File Update Run on linux/arm/v7 container. * Modify default package tests to check -h if -v fails. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust opencv deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
3 lines
101 B
Bash
Executable File
3 lines
101 B
Bash
Executable File
#!/bin/bash -ex
|
|
for b in $(crew files ${1} | grep /usr/local/bin); do $b -v 2>&1 || $b -h 2>&1; done
|