Skip to content

Commit

Permalink
Remove unnecessary -z option from tar command
Browse files Browse the repository at this point in the history
  • Loading branch information
ikesyo committed Aug 9, 2017
1 parent 1fb9d92 commit 313454d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/CarthageKit/Archive.swift
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private func untar(archive fileURL: URL, to destinationDirectoryURL: URL) -> Sig
precondition(fileURL.isFileURL)
precondition(destinationDirectoryURL.isFileURL)

let task = Task("/usr/bin/env", arguments: [ "tar", "-xzf", fileURL.path, "-C", destinationDirectoryURL.path ])
let task = Task("/usr/bin/env", arguments: [ "tar", "-xf", fileURL.path, "-C", destinationDirectoryURL.path ])
return task.launch()
.mapError(CarthageError.taskError)
.then(SignalProducer<(), CarthageError>.empty)
Expand Down

0 comments on commit 313454d

Please sign in to comment.