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 6adbe83 commit 39a96bdCopy full SHA for 39a96bd
packages/timescaledb.rb
packages/vector.rb
pigsty.rb
@@ -7,6 +7,8 @@
7
require "csv"
8
require "open-uri"
9
10
+Pgpm.load_packages
11
+
12
URI.open("https://raw.githubusercontent.com/pgsty/extension/refs/heads/main/data/pigsty.csv") do |f|
13
i = 0
14
CSV.foreach(f, headers: true) do |row|
@@ -20,6 +22,12 @@
20
22
origin = "git \"#{origin}\""
21
23
end
24
name = row["name"]
25
26
+ next if Pgpm::Package.find do |pkg|
27
+ origin =~ /github/ &&
28
+ pkg.respond_to?(:github_config) && pkg.github_config&.name == github
29
+ end
30
31
next if File.exist?("packages/#{name}.rb")
32
33
i += 1
0 commit comments