Skip to content

Commit

Permalink
Fix download step
Browse files Browse the repository at this point in the history
  • Loading branch information
mclrc committed Oct 17, 2023
1 parent 2e19558 commit 288b8e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
- name: Download CSPICE
if: steps.cache-cspice.outputs.cache-hit != 'true'
run:
wget https://naif.jpl.nasa.gov/pub/naif/toolkit/C/PC_Linux_GCC_64bit/packages/cspice.tar.Z
gzip -d cspice.tar.Z
tar xf cspice.tar
wget https://naif.jpl.nasa.gov/pub/naif/toolkit/C/PC_Linux_GCC_64bit/packages/cspice.tar.Z &&
gzip -d cspice.tar.Z &&
tar xf cspice.tar &&
mv cspice/lib/cspice.a cspice/lib/libcspice.a
- name: Build
run: cargo build --verbose
Expand Down

0 comments on commit 288b8e1

Please sign in to comment.