diff options
| author | Sergio Carlavilla Delgado <carlavilla@FreeBSD.org> | 2021-05-23 19:00:35 +0000 |
|---|---|---|
| committer | Sergio Carlavilla Delgado <carlavilla@FreeBSD.org> | 2021-05-23 19:00:35 +0000 |
| commit | 0030e0f18adf90701e4e8137550c0f036804e2cb (patch) | |
| tree | c36c5c3c822ab152a613cb7193c493e150cf4edb /documentation/tools | |
| parent | 7c1856c004f27e6de26a147f1bfb7bf481d67abc (diff) | |
Diffstat (limited to 'documentation/tools')
| -rw-r--r-- | documentation/tools/global-pgpkeys-creator.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/documentation/tools/global-pgpkeys-creator.rb b/documentation/tools/global-pgpkeys-creator.rb index 37eb94fe32..72825f613e 100644 --- a/documentation/tools/global-pgpkeys-creator.rb +++ b/documentation/tools/global-pgpkeys-creator.rb @@ -22,7 +22,9 @@ end def processPGPKey(keyFile, pgpKeysFile) File.readlines(keyFile).each do |line| - pgpKeysFile.puts(line) + if not line.include? "// sh addkey.sh" and not line.include? "[.literal-block-margin]" + pgpKeysFile.puts(line) + end end end |
