feat(xcode): support .swiftpm as project file in xc (#10434)

This commit is contained in:
Kyle
2021-11-26 06:57:08 +08:00
committed by GitHub
parent 0314604384
commit 452ddff763
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ alias xcsel='sudo xcode-select --switch'
# source: https://gist.github.com/subdigital/5420709
function xc {
local xcode_files
xcode_files=(${1:-.}/{*.{xcworkspace,xcodeproj},Package.swift}(N))
xcode_files=(${1:-.}/{*.{xcworkspace,xcodeproj,swiftpm},Package.swift}(N))
if [[ ${#xcode_files} -eq 0 ]]; then
echo "No Xcode files found in ${1:-the current directory}." >&2