Skip to content

Commit

Permalink
Linux: rethrow exceptions correctly (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
letmaik authored Jan 30, 2024
1 parent 57277c5 commit 894352e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/test-windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ exec { python -m pip install -r dev-requirements.txt }

# Install test helper package
Push-Location test/win-dshow-capture
exec { python -m pip install wheel }
exec { python -m pip install wheel setuptools }
exec { python -u setup.py bdist_wheel }
python -m pip uninstall -y pyvirtualcam_win_dshow_capture
ls dist\*cp${PYVER}*win*.whl | % { exec { python -m pip install $_ } }
Expand Down
2 changes: 1 addition & 1 deletion pyvirtualcam/native_linux_v4l2loopback/virtual_output.h
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class VirtualOutput {
} catch (std::exception &ex) {
close(_camera_fd);
_camera_fd = -1;
throw ex;
throw;
}
};

Expand Down

0 comments on commit 894352e

Please sign in to comment.