Fix /usr/local/lib/crew/lib/buildsystems/pip.rb:21:in eval: no implicit conversion of nil into String (TypeError) (#8877)

This commit is contained in:
Ed Reel
2023-11-02 15:07:10 -05:00
committed by GitHub
parent fcededfe25
commit 0661d880e3
2 changed files with 2 additions and 2 deletions

View File

@@ -18,6 +18,6 @@ class Pip < Package
@destpath = "#{CREW_DEST_DIR.chomp('/')}#{@pip_path}"
FileUtils.install @pip_path, @destpath
end
eval @pip_install_extras
eval @pip_install_extras if @pip_install_extras
end
end

View File

@@ -1,6 +1,6 @@
# lib/const.rb
# Defines common constants used in different parts of crew
CREW_VERSION = '1.38.2'
CREW_VERSION = '1.38.3'
# kernel architecture
KERN_ARCH = `uname -m`.chomp