From 753e6b90edeb7e971fa509c751e1ff653ff7b5b2 Mon Sep 17 00:00:00 2001 From: "Jaeyun,Oh" Date: Tue, 24 Sep 2019 00:05:31 +0900 Subject: [PATCH 1/3] Change submodule directory path ( Sources/Frameworks -> Frameworks ) --- .gitmodules | 4 ++-- {Sources/Frameworks => Frameworks}/Motion | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename {Sources/Frameworks => Frameworks}/Motion (100%) diff --git a/.gitmodules b/.gitmodules index 80f022138..4aeaa1e08 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "Sources/Frameworks/Motion"] - path = Sources/Frameworks/Motion +[submodule "Frameworks/Motion"] + path = Frameworks/Motion url = https://github.com/CosmicMind/Motion.git diff --git a/Sources/Frameworks/Motion b/Frameworks/Motion similarity index 100% rename from Sources/Frameworks/Motion rename to Frameworks/Motion From 157a66520654fcbc430dfbac5d7a590c4f2d3033 Mon Sep 17 00:00:00 2001 From: "Jaeyun,Oh" Date: Tue, 24 Sep 2019 00:08:59 +0900 Subject: [PATCH 2/3] Change Frameworks directory path to Material.xcodeproj --- Material.xcodeproj/project.pbxproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Material.xcodeproj/project.pbxproj b/Material.xcodeproj/project.pbxproj index 975bbd9db..e7e2cb8dc 100644 --- a/Material.xcodeproj/project.pbxproj +++ b/Material.xcodeproj/project.pbxproj @@ -443,6 +443,7 @@ 9638322C1B88DFD80015F710 = { isa = PBXGroup; children = ( + 9630ACB71F29A26B00B4217D /* Frameworks */, 96D88BF41C1328D800B91418 /* Sources */, 963832371B88DFD80015F710 /* Products */, ); @@ -760,7 +761,6 @@ isa = PBXGroup; children = ( 96BCB7EC1CB40DE900C806FE /* Font */, - 9630ACB71F29A26B00B4217D /* Frameworks */, 96BCB7571CB40DC500C806FE /* iOS */, 96334EF51C8B84660083986B /* Assets.xcassets */, 96D88BFC1C1328D800B91418 /* Info.plist */, From d2ca07aecaa7e70773e535e4cdebeadbc8e1620c Mon Sep 17 00:00:00 2001 From: "Jaeyun,Oh" Date: Tue, 24 Sep 2019 00:10:27 +0900 Subject: [PATCH 3/3] Remove exclude path to Package.swift --- Package.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Package.swift b/Package.swift index 604ed3f9c..4e3712af7 100644 --- a/Package.swift +++ b/Package.swift @@ -14,8 +14,7 @@ let package = Package( .target( name: "Material", dependencies: ["Motion"], - path: "Sources", - exclude: ["Frameworks"] + path: "Sources" ) ] )