mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
Revert "Use custom script to simulate “codesign --deep”"
This reverts commit 434917b1e9.
This commit is contained in:
@@ -909,7 +909,7 @@ rule run_application
|
||||
description = Run ‘$in’…
|
||||
|
||||
rule sign_executable
|
||||
command = bin/sign_app "$identity" $in && touch $out
|
||||
command = codesign --deep -fs "$identity" $in && touch $out
|
||||
description = Sign ‘$in’…
|
||||
|
||||
rule tbz_archive
|
||||
|
||||
12
bin/sign_app
12
bin/sign_app
@@ -1,12 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
identity=$1
|
||||
app_path=$2
|
||||
|
||||
until codesign -fs "${identity}" "${app_path}"; do
|
||||
for lib in "${app_path}"/Contents/{Frameworks/*.{framework,dylib},PlugIns/*.tmplugin}; do
|
||||
codesign --timestamp=none -s "${identity}" "${lib}"
|
||||
done
|
||||
done
|
||||
|
||||
true
|
||||
Reference in New Issue
Block a user