Skip to content

Commit

Permalink
scripts fix attempts
Browse files Browse the repository at this point in the history
  • Loading branch information
Climbatize committed Feb 1, 2021
1 parent 69373d8 commit 6cfee34
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion MiniApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
31070C62258C552F00BED77C /* USERGUIDE.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = USERGUIDE.md; sourceTree = "<group>"; };
31070C63258C554500BED77C /* CHANGELOG.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = CHANGELOG.md; sourceTree = "<group>"; };
31070C64258C554500BED77C /* DEV.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = DEV.md; sourceTree = "<group>"; };
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 = "<group>"; };
3813F32224051E1D002703D7 /* MiniAppStatusTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MiniAppStatusTests.swift; sourceTree = "<group>"; };
38252B9823DFFBAB008A4E93 /* ListingAPITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ListingAPITests.swift; sourceTree = "<group>"; };
Expand Down
2 changes: 1 addition & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
10 changes: 5 additions & 5 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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
File renamed without changes.
2 changes: 1 addition & 1 deletion scripts/deploy-to-app-center.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/sh
set -ex

# Publish the Simulator App build to App Center.
Expand Down
2 changes: 1 addition & 1 deletion scripts/release-cocoapods.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/sh
set -ex

# Publishes the SDKs podspec to public CocoPods repo
Expand Down
2 changes: 1 addition & 1 deletion scripts/release-docs.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/sh
set -ex

# Publishes SDK documentation to Github Pages for a Git tag ($RELEASE_TAG)
Expand Down
2 changes: 1 addition & 1 deletion scripts/release-prod-branch.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 6cfee34

Please sign in to comment.