Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Avasam committed Oct 9, 2024
1 parent 79da502 commit f5eff18
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions scripts/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,15 @@ $arguments = @(
'--exclude=pygetwindow',
'--exclude=pymsgbox',
'--exclude=pytweening',
'--exclude=mouseinfo',
# Installed by PyAutoGUI, but used by linux
'--exclude=pyscreeze',
# Installed by D3DShot
'--exclude=PIL')
'--exclude=mouseinfo')
if ($IsWindows) {
# These are used on Linux
$arguments += @(
# Installed by PyAutoGUI
'--exclude=pyscreeze'
# Installed by D3DShot
'--exclude=PIL')
}
if ($IsLinux) {
$arguments += @(
# Required on the CI for PyWinCtl
Expand Down

0 comments on commit f5eff18

Please sign in to comment.