Skip to content

Commit

Permalink
fix zsh issue in shell (#18)
Browse files Browse the repository at this point in the history
* fix issue in shell

* increase command version
  • Loading branch information
osrufung authored Dec 16, 2022
1 parent 2914b0a commit ffcd5ff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version: 5.5
// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
Expand Down
2 changes: 1 addition & 1 deletion Sources/Shell/Shell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Foundation
task.standardError = errorPipe
}
task.standardOutput = pipe
task.arguments = ["--login", "-c", command]
task.arguments = ["-c", command]
task.launchPath = "/bin/zsh"
task.standardInput = nil
if let directory = directory {
Expand Down
2 changes: 1 addition & 1 deletion Sources/jungle/Commands/Main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ struct Jungle: AsyncParsableCommand {
static var configuration = CommandConfiguration(
commandName: "jungle",
abstract: "SwiftPM and Cocoapods based projects complexity analyzer.",
version: "2.1.0",
version: "2.1.1",
subcommands: [HistoryCommand.self, CompareCommand.self, GraphCommand.self, ModulesCommand.self],
defaultSubcommand: CompareCommand.self
)
Expand Down

0 comments on commit ffcd5ff

Please sign in to comment.