Skip to content

Commit

Permalink
Fix version number in download link
Browse files Browse the repository at this point in the history
  • Loading branch information
kojix2 committed Mar 12, 2022
1 parent 9d9c62f commit 532bda1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
require 'bundler/gem_tasks'
require 'rake/testtask'
require 'digest'
require_relative 'lib/libui/version'

Rake::TestTask.new(:test) do |t|
t.libs << 'test'
Expand All @@ -15,7 +16,7 @@ def version
end

def download_kojix2_release(library, remote_lib, file, sha256sum_expected)
url = "https://github.com/kojix2/LibUI/releases/download/v0.0.14/#{file}"
url = "https://github.com/kojix2/LibUI/releases/download/v#{LibUI::VERSION}/#{file}"
download_from_url(library, remote_lib, file, sha256sum_expected, url)
end

Expand Down

0 comments on commit 532bda1

Please sign in to comment.