Files
PerspectiveTransform/Example/OpenCV-OSX-Tests/uninstall-opencv.sh
Paul Zabelin 54cc8182b0 add macOS workflow (#113)
* add macos workflow
* update opencv install script
* cache OpenCV brew installation
* update badge
2020-09-09 02:05:54 -07:00

10 lines
175 B
Bash
Executable File

#! /usr/bin/env bash
# uninstall-opencv.sh
# To remove all dependencies:
for package in opencv $(brew deps opencv)
do
brew rm --ignore-dependencies --force $package
done