Skip to content

Commit

Permalink
Ensure omnibus on windows can be rebuilt multiple times
Browse files Browse the repository at this point in the history
  • Loading branch information
adfoster-r7 committed May 13, 2024
1 parent 0008a23 commit d6f626e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
19 changes: 18 additions & 1 deletion config/software/metasploit-framework.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
name "metasploit-framework"

# Detect a local checkout of metasploit-framework at '../metasploit-framework' - i.e. for the scenario of:
# - c:/temp/metasploit-omnibus
# - c:/temp/metasploit-framework (A local checkout of framework to use during the build process)
# but try and use 'C:/metasploit-framework' - as that's the metasploit-omnibus artifacts output directory
def has_windows_metasploit_framework_repo?
windows? && File.exist?('../metasploit-framework') && File.expand_path(File.join(Dir.pwd, "..", "metasploit-framework")) != "c:/metasploit-framework"
end

if linux? && File.exist?("/metasploit-framework")
# supply current version of metasploit-framework at root of filesystem
source path: "/metasploit-framework"
elsif windows? && File.exist?('../metasploit-framework')
elsif has_windows_metasploit_framework_repo?
# supply current version of metasploit-framework relative to the current directory
source path: "../metasploit-framework"
else
Expand Down Expand Up @@ -154,4 +163,12 @@
end
end
end

# Workaround for a Windows bug with chef r7_9.0.23_custom that allows the `.git` folders through
# into the final build result, leading to the .exe being an extra 1gb in size
block do
self.project.exclusions.each do |exclusion|
Pathname(install_dir).glob(exclusion).each(&:rmtree)
end
end
end
3 changes: 2 additions & 1 deletion config/software/rubygems.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
dependency "ruby"
end

default_version "3.2.22"
default_version "3.5.10"

if version && !source
# NOTE: 2.1.11 is the last version of rubygems before the 2.2.x change to native gem install location
Expand All @@ -41,6 +41,7 @@
known_tarballs = {
"3.1.4" => "d117187a8f016cbe8f52011ae02e858b",
"3.2.22"=> "b128d5493da2ec7a1da49a7189c04b35",
"3.5.10" => "70f46c096b4e11c42b0190cc3e3375e2"
}
known_tarballs.each do |vsn, md5|
version vsn do
Expand Down
2 changes: 1 addition & 1 deletion local/cache
Submodule cache updated 1 files
+ rubygems-3.5.10.tgz

0 comments on commit d6f626e

Please sign in to comment.