Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/Java/BowlerStudio/wrappers/osx/bowler-scripting-kernel.sh
2022-09-04 12:45:01 +02:00

13 lines
300 B
Bash

#! /bin/bash
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
export OPENCV_DIR=$DIR/opencv249build/
echo Setting OPENCV_DIR = ${OPENCV_DIR}
if (java -jar "$DIR/JavaVersionCheck.jar" 8 45) ; then
java -jar "$DIR/bin/BowlerStudio.jar" -r "$@"
else
echo "Update Java and try again"
fi