From 6cfee34aba50f0014a8bb80ce87088f75b1f80c3 Mon Sep 17 00:00:00 2001 From: PM Villa Date: Mon, 1 Feb 2021 21:11:08 +0900 Subject: [PATCH] scripts fix attempts --- MiniApp.xcodeproj/project.pbxproj | 2 +- Podfile | 2 +- Podfile.lock | 10 +++++----- configure-secrets.sh => scripts/configure-secrets.sh | 0 scripts/deploy-to-app-center.sh | 2 +- scripts/release-cocoapods.sh | 2 +- scripts/release-docs.sh | 2 +- scripts/release-prod-branch.sh | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) rename configure-secrets.sh => scripts/configure-secrets.sh (100%) diff --git a/MiniApp.xcodeproj/project.pbxproj b/MiniApp.xcodeproj/project.pbxproj index 8853be25..4637fa75 100644 --- a/MiniApp.xcodeproj/project.pbxproj +++ b/MiniApp.xcodeproj/project.pbxproj @@ -97,7 +97,7 @@ 31070C62258C552F00BED77C /* USERGUIDE.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = USERGUIDE.md; sourceTree = ""; }; 31070C63258C554500BED77C /* CHANGELOG.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = CHANGELOG.md; sourceTree = ""; }; 31070C64258C554500BED77C /* DEV.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = DEV.md; sourceTree = ""; }; - 31070C66258C55C000BED77C /* configure-secrets.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; path = "configure-secrets.sh"; sourceTree = SOURCE_ROOT; }; + 31070C66258C55C000BED77C /* configure-secrets.sh */ = {isa = PBXFileReference; lastKnownFileType = text.script.sh; name = "configure-secrets.sh"; path = "scripts/configure-secrets.sh"; sourceTree = SOURCE_ROOT; }; 31553D3525B6C6800091EE50 /* Config-common.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Config-common.xcconfig"; sourceTree = ""; }; 3813F32224051E1D002703D7 /* MiniAppStatusTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MiniAppStatusTests.swift; sourceTree = ""; }; 38252B9823DFFBAB008A4E93 /* ListingAPITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ListingAPITests.swift; sourceTree = ""; }; diff --git a/Podfile b/Podfile index 326fd29e..33dd64c6 100644 --- a/Podfile +++ b/Podfile @@ -17,5 +17,5 @@ target sdk_name + '_Example' do end post_install do |installer| - system("./configure-secrets.sh #{sdk_name} #{secrets.join(" ")}") + system("./scripts/configure-secrets.sh #{sdk_name} #{secrets.join(" ")}") end diff --git a/Podfile.lock b/Podfile.lock index 038c3a1f..a0cec863 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -1,9 +1,9 @@ PODS: - - MiniApp (2.7.0): - - MiniApp/Core (= 2.7.0) + - MiniApp (2.8.0): + - MiniApp/Core (= 2.8.0) - RSDKUtils (>= 1.1.0) - ZIPFoundation - - MiniApp/Core (2.7.0): + - MiniApp/Core (2.8.0): - RSDKUtils (>= 1.1.0) - ZIPFoundation - Nimble (9.0.0) @@ -28,12 +28,12 @@ EXTERNAL SOURCES: :path: "./" SPEC CHECKSUMS: - MiniApp: 9d78f671deda341c2d155fbc25ef6f66124f1d02 + MiniApp: 2d14223cd09fd3ea595f902e7d8592c1229c190e Nimble: 3b4ec3fd40f1dc178058e0981107721c615643d8 Quick: 6d9559f40647bc4d510103842ef2fdd882d753e2 RSDKUtils: 9940b99fa0494181b8ee2cfa2ac742bb0958b984 ZIPFoundation: b1f0de4eed33e74a676f76e12559ab6b75990197 -PODFILE CHECKSUM: 61405513e9976de57537b6b6a11359bcf09879db +PODFILE CHECKSUM: fbeafb7f4a1fe8aa7e23d97eaa004ed2363f1915 COCOAPODS: 1.10.1 diff --git a/configure-secrets.sh b/scripts/configure-secrets.sh similarity index 100% rename from configure-secrets.sh rename to scripts/configure-secrets.sh diff --git a/scripts/deploy-to-app-center.sh b/scripts/deploy-to-app-center.sh index 22fcd2ae..da5ac6aa 100755 --- a/scripts/deploy-to-app-center.sh +++ b/scripts/deploy-to-app-center.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/sh set -ex # Publish the Simulator App build to App Center. diff --git a/scripts/release-cocoapods.sh b/scripts/release-cocoapods.sh index 1a01e03a..2f656f48 100755 --- a/scripts/release-cocoapods.sh +++ b/scripts/release-cocoapods.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/sh set -ex # Publishes the SDKs podspec to public CocoPods repo diff --git a/scripts/release-docs.sh b/scripts/release-docs.sh index 98a5882b..578d1aa2 100755 --- a/scripts/release-docs.sh +++ b/scripts/release-docs.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/sh set -ex # Publishes SDK documentation to Github Pages for a Git tag ($RELEASE_TAG) diff --git a/scripts/release-prod-branch.sh b/scripts/release-prod-branch.sh index 1fddf2ce..9a7c4c56 100755 --- a/scripts/release-prod-branch.sh +++ b/scripts/release-prod-branch.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/sh set -ex # Pushes a release tag ($RELEASE_TAG) to the "prod" branch in order to trigger a prod build on App Center