diff --git a/ci/drone.yml b/ci/drone.yml index 2800cb6..b04d9df 100644 --- a/ci/drone.yml +++ b/ci/drone.yml @@ -14,7 +14,7 @@ steps: - name: Build image: node:18-bookworm commands: - - npm install + - cd common && npm install && cd .. - apt update - apt install -y qtchooser qttools5-dev-tools # Start building @@ -27,7 +27,7 @@ steps: commands: - apt update - apt install -y npm - - npm install -D + - cd common && npm install -D && cd .. - xvfb-run bash scripts/run-tests.sh when: event: [ push, tag ] diff --git a/scripts/build-wine.sh b/scripts/build-wine.sh index bf8a7ff..1b4e9cb 100644 --- a/scripts/build-wine.sh +++ b/scripts/build-wine.sh @@ -7,7 +7,7 @@ cd build/runtime-pyside6 || exit 1 rm -rf $(find . -name "*.pyc") -wine_py pyinstaller --add-data "LogarithmPlotter/logarithmplotter.svg;." \ +wine pyinstaller --add-data "LogarithmPlotter/logarithmplotter.svg;." \ --add-data "LogarithmPlotter/qml;qml" \ --add-data "LogarithmPlotter/i18n;i18n" \ --noconsole \