-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Клонируем репозиторий вместо загрузки * Убрал лишнее при клонировании * Убрал кэш, т.к. не нужен * Trigger Build * Trigger Build --------- Co-authored-by: Timur Shafigullin <hometim55@gmail.com> Co-authored-by: v.barabanov <v.barabanov@Brbnkn-MBPro-2.local>
- Loading branch information
1 parent
d04cf03
commit 50bcf64
Showing
6 changed files
with
55 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
HR-Mobile: | ||
sha: b2f2b9ab6168e7335aee4316e4379d2d299b0a3b | ||
version: 0.5.5 | ||
Shared: | ||
sha: b2f2b9ab6168e7335aee4316e4379d2d299b0a3b | ||
version: 0.5.5 | ||
sha: 40a1900a6733c3e64d1b82e1492df7b3daef711c | ||
version: 0.6.0 | ||
Applicant: | ||
sha: b2f2b9ab6168e7335aee4316e4379d2d299b0a3b | ||
version: 0.5.5 | ||
sha: 40a1900a6733c3e64d1b82e1492df7b3daef711c | ||
version: 0.6.0 | ||
Shared: | ||
sha: 40a1900a6733c3e64d1b82e1492df7b3daef711c | ||
version: 0.6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
Sources/AnalyticsGenTools/Extensions/FileManager+Extensions.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import Foundation | ||
|
||
extension FileManager { | ||
|
||
public func directoryExists(atPath path: String) -> Bool { | ||
var isDirectory: ObjCBool = true | ||
let exists = FileManager.default.fileExists(atPath: path, isDirectory: &isDirectory) | ||
return exists && isDirectory.boolValue | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters