Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed Jan 14, 2024
1 parent 8bdfed5 commit dc89cc2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ WORKDIR /
COPY requirements.txt /requirements.txt
RUN python3 -m pip install --target /build/lib/pythonpath --upgrade -r ./requirements.txt

ENV PYTHONPATH=/build/lib/pythonpath

# Copy Libraries for AppImage
RUN cp /lib64/libtinfo.so.5 /build/lib
RUN cp /lib64/libffi.so.6 /build/lib
Expand Down
2 changes: 1 addition & 1 deletion Tests/FaultTests/FaultTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var env = ProcessInfo.processInfo.environment

extension Process {
func startAndBlock() throws {
log("$ \(executableURL!.path()) \((arguments ?? []).joined(separator: " "))")
log("$ \(executableURL!.path) \((arguments ?? []).joined(separator: " "))")
launch()
waitUntilExit()
print("Exited with: \(terminationStatus)")
Expand Down

0 comments on commit dc89cc2

Please sign in to comment.