Skip to content

Commit

Permalink
Merge pull request #26 from lassepe/fix/mktemp
Browse files Browse the repository at this point in the history
Fix/mktemp
  • Loading branch information
rkyleg authored Jan 20, 2022
2 parents b702779 + 9925014 commit 1788f0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/list-all
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ function sort_versions() {
LC_ALL=C sort -gt. -k 1,1 -k 2,2n -k 3,3n -k 4,4n -k 5,5n | sort -r - | awk '{print $2}'
}

releases=$(tempfile -s .json)
headers=$(tempfile)
releases=$(mktemp)
headers=$(mktemp)

cmd="curl -Ls0 -D$headers"
releases_path="https://api.github.com/repos/JuliaLang/julia/releases?page="
Expand Down

0 comments on commit 1788f0f

Please sign in to comment.