Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix DALI_extra clone #1276

Merged
merged 1 commit into from Sep 19, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 1 addition & 7 deletions qa/setup_dali_extra.sh
@@ -1,13 +1,7 @@
#!/bin/bash

# Fetch test data

# User can specify optional argument with target where to download DALI_extra
if [ "$#" -eq 1 ]; then
export DALI_EXTRA_PATH=$1
else
export DALI_EXTRA_PATH=/opt/dali_extra
fi
export DALI_EXTRA_PATH=${DALI_EXTRA_PATH:-/opt/dali_extra}

DALI_EXTRA_URL="https://github.com/NVIDIA/DALI_extra.git"
DIR=$(cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )
Expand Down