在macOS上这有什么问题?
输入:
Expansion of alias “a“ failed;’version’ is not a git command
错误:
{{1}}
答案 0 :(得分:1)
看起来您有一个 //MARK: - Queue
fileprivate(set) public var queue: OperationQueue? {
get {
return objc_getAssociatedObject(self, &queueAssociationKey) as? OperationQueue
}
set(newValue) {
objc_setAssociatedObject(self, &queueAssociationKey, newValue, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN)
}
}
字符(“破折号”),而不是两个连字符—
。
已更正它,它对我有用:
--