Skip to content

Commit

Permalink
check if zedxmini repo is available
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalzauberzeug committed Sep 25, 2024
1 parent 78e85e6 commit bd26d84
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,12 @@ case $os in
esac
export DOCKER_BUILDKIT=1

if [ -d /usr/local/zed ] && [ -d ../zedxmini ]; then
compose_args="$compose_args -f docker-compose.jetson.orin.zedxmini.yml"
if [ -d /usr/local/zed ]; then
if [ -d ../zedxmini ]; then
compose_args="$compose_args -f docker-compose.jetson.orin.zedxmini.yml"
else
echo "Zed X Mini not found. https://github.com/zauberzeug/zedxmini"
fi
fi

cmd=$1
Expand Down

0 comments on commit bd26d84

Please sign in to comment.