Skip to content

Commit

Permalink
Fix platform check
Browse files Browse the repository at this point in the history
  • Loading branch information
akenmorris committed Jun 18, 2024
1 parent a07e094 commit c1a0b7d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/download_test_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@ BASE=`pwd`
# based on root folder
cd /

# if windows
if [ -f /usr/bin/wget ]; then
# if platform is windows, install wget
if [ "$PLATFORM" == "windows" ]; then
choco install wget --no-progress
fi


# Tiny test data downloads
for run in {1..5}; do
if [ ! -f /tmp/tiny_test_cache.tar.gz ] ; then
Expand Down

0 comments on commit c1a0b7d

Please sign in to comment.