Commit 88798e83 authored by Bharath Ramsundar's avatar Bharath Ramsundar Committed by GitHub
Browse files

Merge pull request #633 from LRParser/master

Fix for issue #632 - ensure find command is properly terminated
parents 5cbabcfa 9ad36d41
Loading
Loading
Loading
Loading

scripts/download_data.sh

100644 → 100755
+4 −3
Original line number Diff line number Diff line
#!/bin/bash
# After running this script all data is in datasets
cd datasets
find ../examples -name "get*.sh" -exec bash
# After running this script all data is in datasets. Assumes script is run from deepchem/scripts 
# e.g., user@server:~/deepchem/scripts$ ./download_data.sh

cd ../datasets
find ../examples -name "get*.sh" -exec bash {} \;