Revision 2274db4d8e0280284e871a3a7c214f644a3feb8a authored by Doug Gregor on 14 January 2016, 06:22:21 UTC, committed by Doug Gregor on 14 January 2016, 16:21:21 UTC
1 parent ffd6054
Raw File
toolchain-codesign
#!/usr/bin/env bash
#===--- toolchain-codesign - Creates code signed xctoolchain ---------------===#
#
## This source file is part of the Swift.org open source project
##
## Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
## Licensed under Apache License v2.0 with Runtime Library Exception
##
## See http://swift.org/LICENSE.txt for license information
## See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
#
#===------------------------------------------------------------------------===#

DARWIN_TOOLCHAIN_APPLICATION_CERT=$1
TOOLCHAIN_PREFIX=$2

codesign -f --deep -s "${DARWIN_TOOLCHAIN_APPLICATION_CERT}" "${TOOLCHAIN_PREFIX}"
back to top