Skip to content

Commit 058de87

Browse files
committed
"
1 parent f1d3fb8 commit 058de87

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

scripts/build-linux.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ if ! grep -Fxq "$version" data/version.txt; then
1919
fi
2020

2121
mkdir -p build
22+
poetry install
2223
poetry run python -m nuitka \
2324
./derpiwallpaper/__main__.py \
2425
--onefile \

scripts/build-macos.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
set -euo pipefail
2+
set -xeuo pipefail
33

44
# Build DerpiWallpaper for macOS using Nuitka
55

@@ -19,6 +19,7 @@ if ! grep -Fxq "$version" data/version.txt; then
1919
fi
2020

2121
mkdir -p build
22+
poetry install
2223
poetry run python -m nuitka \
2324
./derpiwallpaper/__main__.py \
2425
--onefile \

scripts/build-windows.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ if ($content -ne $version) {
2424
}
2525

2626
New-Item -ItemType Directory -Force -Path build | Out-Null
27+
poetry install
2728
poetry run python -m nuitka \
2829
.\derpiwallpaper\__main__.py \
2930
--msvc=latest \

0 commit comments

Comments
 (0)