Skip to content

Commit b0869d0

Browse files
committed
Merge branch 'dev' of https://github.com/LoopKit/Loop into LoopKit-dev
# Conflicts: # Cartfile.resolved
2 parents 430d9ab + 49412b6 commit b0869d0

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

Cartfile.resolved

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
github "LoopKit/Amplitude-iOS" "2137d5fd44bf630ed33e1e72d7af6d8f8612f270"
2-
github "LoopKit/CGMBLEKit" "7417605dd898bf89378171941126c85d85dc642c"
2+
github "LoopKit/CGMBLEKit" "8983147b950a21f736c3e51c1e5ac5c82a6e22d0"
33
github "LoopKit/G4ShareSpy" "e62d296067180c6659166272ff9cc406f470ec9e"
4-
github "LoopKit/LoopKit" "16276559436956e2f7cb343b73b767779f9f477f"
4+
github "LoopKit/LoopKit" "c49025f74aa22845eec58546d4b00f189632246b"
55
github "LoopKit/MKRingProgressView" "f548a5c64832be2d37d7c91b5800e284887a2a0a"
66
github "LoopKit/dexcom-share-client-swift" "c4f3d48e56e5b3ad786486ccd1bbc753034096d2"
77
github "i-schuetz/SwiftCharts" "0.6.5"
8-
github "ps2/rileylink_ios" "92314a08f26e94e271961a629e4d7b898e4e2e4d"
8+
github "ps2/rileylink_ios" "3082367b3484586cd3a70a7134edef3ea35c6b9b"

Loop.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2395,7 +2395,7 @@
23952395
);
23962396
runOnlyForDeploymentPostprocessing = 0;
23972397
shellPath = /bin/sh;
2398-
shellScript = "${SRCROOT}/Scripts/copy-frameworks.sh\n\n";
2398+
shellScript = "\"${SRCROOT}/Scripts/copy-frameworks.sh\"\n\n";
23992399
};
24002400
43EDDBEF1C361BCE007D89B5 /* Copy Frameworks with Carthage */ = {
24012401
isa = PBXShellScriptBuildPhase;
@@ -2439,7 +2439,7 @@
24392439
);
24402440
runOnlyForDeploymentPostprocessing = 0;
24412441
shellPath = /bin/sh;
2442-
shellScript = "${SRCROOT}/Scripts/copy-frameworks.sh\n";
2442+
shellScript = "\"${SRCROOT}/Scripts/copy-frameworks.sh\"\n";
24432443
};
24442444
43FF3DF620A8EFE800F8E62C /* Copy Frameworks with Carthage */ = {
24452445
isa = PBXShellScriptBuildPhase;
@@ -2459,7 +2459,7 @@
24592459
);
24602460
runOnlyForDeploymentPostprocessing = 0;
24612461
shellPath = /bin/sh;
2462-
shellScript = "${SRCROOT}/Scripts/copy-frameworks.sh\n";
2462+
shellScript = "\"${SRCROOT}/Scripts/copy-frameworks.sh\"\n";
24632463
};
24642464
A942E448225FD9D500DD4980 /* Copy Frameworks with Carthage */ = {
24652465
isa = PBXShellScriptBuildPhase;
@@ -2479,7 +2479,7 @@
24792479
);
24802480
runOnlyForDeploymentPostprocessing = 0;
24812481
shellPath = /bin/sh;
2482-
shellScript = "${SRCROOT}/Scripts/copy-frameworks.sh\n\n";
2482+
shellScript = "\"${SRCROOT}/Scripts/copy-frameworks.sh\"\n\n";
24832483
};
24842484
C16DA84322E8E5FF008624C2 /* Install Plugins */ = {
24852485
isa = PBXShellScriptBuildPhase;
@@ -2497,7 +2497,7 @@
24972497
);
24982498
runOnlyForDeploymentPostprocessing = 0;
24992499
shellPath = /bin/sh;
2500-
shellScript = "${SRCROOT}/Scripts/copy-plugins.sh\n";
2500+
shellScript = "\"${SRCROOT}/Scripts/copy-plugins.sh\"\n";
25012501
};
25022502
C1D1405722FB66DF00DA6242 /* Build Derived Assets */ = {
25032503
isa = PBXShellScriptBuildPhase;
@@ -2515,7 +2515,7 @@
25152515
);
25162516
runOnlyForDeploymentPostprocessing = 0;
25172517
shellPath = /bin/sh;
2518-
shellScript = "${SRCROOT}/Scripts/build-derived-assets.sh\n";
2518+
shellScript = "\"${SRCROOT}/Scripts/build-derived-assets.sh\"\n";
25192519
};
25202520
C1D1406222FB7ED200DA6242 /* Build Derived Watch Assets */ = {
25212521
isa = PBXShellScriptBuildPhase;
@@ -2533,7 +2533,7 @@
25332533
);
25342534
runOnlyForDeploymentPostprocessing = 0;
25352535
shellPath = /bin/sh;
2536-
shellScript = "${SRCROOT}/Scripts/build-derived-watch-assets.sh\n";
2536+
shellScript = "\"${SRCROOT}/Scripts/build-derived-watch-assets.sh\"\n";
25372537
};
25382538
C1D19800232CFA2A0096D646 /* Capture Build Details */ = {
25392539
isa = PBXShellScriptBuildPhase;
@@ -2551,7 +2551,7 @@
25512551
);
25522552
runOnlyForDeploymentPostprocessing = 0;
25532553
shellPath = /bin/sh;
2554-
shellScript = "${SRCROOT}/Scripts/capture-build-details.sh\n";
2554+
shellScript = "\"${SRCROOT}/Scripts/capture-build-details.sh\"\n";
25552555
};
25562556
/* End PBXShellScriptBuildPhase section */
25572557

Scripts/capture-build-details.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Copyright © 2019 LoopKit Authors. All rights reserved.
77

88
echo "Gathering build details in ${SRCROOT}"
9-
cd ${SRCROOT}
9+
cd "${SRCROOT}"
1010

1111
plist="${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}"
1212

@@ -16,7 +16,7 @@ if [ -e .git ]; then
1616
branch=$(git branch | grep \* | cut -d ' ' -f2-)
1717
plutil -replace com-loopkit-Loop-git-branch -string "${branch}" "${plist}"
1818
fi;
19-
plutil -replace com-loopkit-Loop-srcroot -string ${SRCROOT} "${plist}"
19+
plutil -replace com-loopkit-Loop-srcroot -string "${SRCROOT}" "${plist}"
2020
plutil -replace com-loopkit-Loop-build-date -string "$(date)" "${plist}"
2121
plutil -replace com-loopkit-Loop-xcode-version -string "${XCODE_PRODUCT_BUILD_VERSION}" "${plist}"
2222

0 commit comments

Comments
 (0)