We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9340647 commit 878c7d5Copy full SHA for 878c7d5
create_mswin_pkg.rb
@@ -13,7 +13,7 @@ class << self
13
include Common
14
15
PACKAGES = 'libffi libyaml openssl readline zlib'
16
- PKG_DEPENDS = 'vcpkg-cmake vcpkg-cmake-config'
+ PKG_DEPENDS = 'vcpkg-cmake vcpkg-cmake-config vcpkg-cmake-get-vars'
17
18
PKG_NAME = 'mswin'
19
@@ -76,6 +76,11 @@ def generate_package_files
76
"./vcpkg export --triplet=x64-windows #{PACKAGES} --raw --output=#{PKG_NAME} --output-dir=#{EXPORT_DIR}"
77
end
78
79
+ # remove tracked files
80
+ Dir.chdir "#{EXPORT_DIR}/#{PKG_NAME}" do
81
+ FileUtils.remove_dir 'scripts', true
82
+ end
83
+
84
vcpkg_u = VCPKG.gsub "\\", '/'
85
86
# vcpkg/installed/status contains a list of installed packages
0 commit comments