mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
17 lines
321 B
Swift
17 lines
321 B
Swift
|
|
//
|
||
|
|
// ProcessInfo+Previews.swift
|
||
|
|
// AltStoreCore
|
||
|
|
//
|
||
|
|
// Created by Riley Testut on 10/11/23.
|
||
|
|
// Copyright © 2023 Riley Testut. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
import Foundation
|
||
|
|
|
||
|
|
public extension ProcessInfo
|
||
|
|
{
|
||
|
|
var isPreview: Bool {
|
||
|
|
ProcessInfo.processInfo.environment["XCODE_RUNNING_FOR_PREVIEWS"] == "1"
|
||
|
|
}
|
||
|
|
}
|