Skip to content

Commit

Permalink
understand which tgz we are looking at
Browse files Browse the repository at this point in the history
  • Loading branch information
epugh committed Jan 18, 2025
1 parent a93a827 commit ef3839c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/tasks/assets.rake
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ namespace :assets do

# Only deal with the compressed notebooks if we don't have the directory already.
if !File.exist?(notebooks_dir) && !File.exist?(notebooks_gz)
puts 'Downloading latest Quepid Notebooks from https://github.com/o19s/quepid-jupyterlite'
system "wget --no-verbose -O #{notebooks_gz} https://github.com/o19s/quepid-jupyterlite/releases/download/0.3.2-rc1/jupyter-lite-build.tgz"
url = 'https://github.com/o19s/quepid-jupyterlite/releases/download/0.3.2-rc1/jupyter-lite-build.tgz'
puts "Downloading latest Quepid Notebooks from #{url}"
system "wget --no-verbose -O #{notebooks_gz} #{url}"
end

puts "Unpacking Jupyterlite into #{destination}"
Expand Down

0 comments on commit ef3839c

Please sign in to comment.