Skip to content

Commit

Permalink
Merge pull request #6 from evandcoleman/release/0.1.11
Browse files Browse the repository at this point in the history
0.1.11
  • Loading branch information
github-actions[bot] authored Sep 1, 2021
2 parents c33148c + 59c99a4 commit 8a2715b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/Scipio/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ extension Command {
.init(
commandName: "Scipio",
abstract: "A program to pre-build and cache Swift packages",
version: "0.1.10",
version: "0.1.11",
subcommands: [
Command.Build.self,
Command.Upload.self,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,11 @@ project '\(projectPath.string)'

let sandboxPath = path + "Pods"
let manifestPath = path + "Pods/Manifest.lock"
let podBinaryPath = try sh("which", "pod")
.waitForOutputString()

try path.chdir {
try sh("pod", "install")
try sh(podBinaryPath, "install")
.logOutput()
.waitUntilExit()
}
Expand Down

0 comments on commit 8a2715b

Please sign in to comment.