Skip to content

Commit

Permalink
Update install_data.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
rhshah committed Jun 24, 2024
1 parent fc02164 commit c91d8aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
fileid=1GtT8jsBGwRoQC-5wHh06r8RFkiFBuirp
filename=test_nucleo.tar.gz

gdown https://drive.google.com/uc?id=$fileid
gdown https://drive.google.com/uc?id=$fileid

# Suppress linux warnings for MacOS tar.gz files
if [[ "$OSTYPE" == "linux-gnu" ]]; then
tar --warning=no-unknown-keyword -xzvf $filename
tar --warning=no-unknown-keyword -xzvf $filename
elif [[ "$OSTYPE" == "darwin"* ]]; then
tar -xzvf $filename
tar -xzvf $filename
fi

rm $filename

0 comments on commit c91d8aa

Please sign in to comment.