Skip to content

Commit

Permalink
Add download script
Browse files Browse the repository at this point in the history
  • Loading branch information
isuruf committed Mar 25, 2024
1 parent 20a3def commit dc1fdb1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions download_wheels.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

mkdir -p dist
cd dist
list_asset_url="https://api.github.com/repos/isuruf/openmm-wheels/releases/tags/${1}"
curl -s $list_asset_url | grep "\"browser_download_url\"" | xargs -i echo {} | cut -b 23- | xargs -i curl -LO {}

0 comments on commit dc1fdb1

Please sign in to comment.