Skip to content

Commit

Permalink
Merge pull request #1269 from e-gris/RE-16624
Browse files Browse the repository at this point in the history
(RE-16624) Temporarily stub OS/X signing
  • Loading branch information
e-gris authored Oct 1, 2024
2 parents c74499d + 3d783b7 commit 886ee87
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
This changelog adheres to [Keep a CHANGELOG](http://keepachangelog.com/).

## [Unreleased]
### Changed
- (RE-16624) OS/X signing temporarily stubbed

## [0.122.0] - 2024-09-03
### Added
Expand Down
7 changes: 6 additions & 1 deletion lib/packaging/sign/dmg.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
module Pkg::Sign::Dmg
module_function

def sign(pkg_directory = 'pkg')
def sign(_)
warn 'OSX SIGNING TEMPORARILY STUBBED. SEE RE-16623'
return 0
end

def stubbed__sign(pkg_directory = 'pkg')
use_identity = ''
unless Pkg::Config.osx_signing_ssh_key.nil?
use_identity = "-i #{Pkg::Config.osx_signing_ssh_key}"
Expand Down

0 comments on commit 886ee87

Please sign in to comment.