mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
Bumps [github.com/jackc/pgx/v5](https://github.com/jackc/pgx) from 5.7.2 to 5.7.3. - [Changelog](https://github.com/jackc/pgx/blob/master/CHANGELOG.md) - [Commits](https://github.com/jackc/pgx/compare/v5.7.2...v5.7.3) --- updated-dependencies: - dependency-name: github.com/jackc/pgx/v5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
19 lines
463 B
Ruby
19 lines
463 B
Ruby
require "erb"
|
|
|
|
rule '.go' => '.go.erb' do |task|
|
|
erb = ERB.new(File.read(task.source))
|
|
File.write(task.name, "// Code generated from #{task.source}. DO NOT EDIT.\n\n" + erb.result(binding))
|
|
sh "goimports", "-w", task.name
|
|
end
|
|
|
|
generated_code_files = [
|
|
"pgtype/int.go",
|
|
"pgtype/int_test.go",
|
|
"pgtype/integration_benchmark_test.go",
|
|
"pgtype/zeronull/int.go",
|
|
"pgtype/zeronull/int_test.go"
|
|
]
|
|
|
|
desc "Generate code"
|
|
task generate: generated_code_files
|