Skip to content

Commit 0c7879f

Browse files
committed
Fix the check
1 parent b8923d3 commit 0c7879f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/SwiftlyTests/E2ETests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ final class E2ETests: SwiftlyTests {
9595
env["ZDOTDIR"] = FileManager.default.homeDirectoryForCurrentUser.path
9696
} else if shell.hasSuffix("fish") {
9797
env["fish_trace"] = "on"
98-
// TODO remove this check
99-
try Swiftly.currentPlatform.runProgram(shell, "cat", FileManager.default.homeDirectoryForCurrentUser.appendingPathComponent(".config/fish/conf.d/swiftly.fish").path)
98+
// TODO: remove this check
99+
try Swiftly.currentPlatform.runProgram(shell, "-c", "cat", FileManager.default.homeDirectoryForCurrentUser.appendingPathComponent(".config/fish/conf.d/swiftly.fish").path)
100100
}
101101

102102
try Swiftly.currentPlatform.runProgram(shell, "-l", "-c", "swiftly install --assume-yes latest --post-install-file=./post-install.sh", env: env)

0 commit comments

Comments
 (0)