"docs/git@developer.sourcefind.cn:OpenDAS/pytorch3d.git" did not exist on "b636f2950d4135f3316bcfa69fa867db341d3d03"
Commit 19b6e8bf authored by Jo Chuang's avatar Jo Chuang Committed by Facebook Github Bot
Browse files

Extract after skipping download for LM example script

Summary: Pull Request resolved: https://github.com/pytorch/fairseq/pull/538

Differential Revision: D14258736

Pulled By: myleott

fbshipit-source-id: ca16355e4c4700fc8eecf2c9374ec170bca826a4
parent 98daf039
...@@ -21,13 +21,13 @@ for ((i=0;i<${#URLS[@]};++i)); do ...@@ -21,13 +21,13 @@ for ((i=0;i<${#URLS[@]};++i)); do
echo "$url not successfully downloaded." echo "$url not successfully downloaded."
exit -1 exit -1
fi fi
if [ ${file: -4} == ".tgz" ]; then fi
tar zxvf $file if [ ${file: -4} == ".tgz" ]; then
elif [ ${file: -4} == ".tar" ]; then tar zxvf $file
tar xvf $file elif [ ${file: -4} == ".tar" ]; then
elif [ ${file: -4} == ".zip" ]; then tar xvf $file
unzip $file elif [ ${file: -4} == ".zip" ]; then
fi unzip $file
fi fi
done done
cd .. cd ..
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment