diff --git a/Package.swift b/Package.swift index a5feb90..86a7f6e 100644 --- a/Package.swift +++ b/Package.swift @@ -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 diff --git a/Sources/Shell/Shell.swift b/Sources/Shell/Shell.swift index f982292..bde9eea 100644 --- a/Sources/Shell/Shell.swift +++ b/Sources/Shell/Shell.swift @@ -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 { diff --git a/Sources/jungle/Commands/Main.swift b/Sources/jungle/Commands/Main.swift index b65d2f0..dbf828c 100644 --- a/Sources/jungle/Commands/Main.swift +++ b/Sources/jungle/Commands/Main.swift @@ -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 )