Skip to content

Commit 3eea3ed

Browse files
committed
Set the actual install dirs
1 parent fc3cb82 commit 3eea3ed

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ name: build
33

44
on:
55
push:
6-
branches: [ master ]
76
tags:
87
- v*
98
pull_request:
@@ -13,7 +12,7 @@ jobs:
1312
compile_plugin:
1413
strategy:
1514
matrix:
16-
maya: [2025, 2026]
15+
maya: [2022, 2023, 2024, 2025, 2026]
1716
os: [macos-13, macos-latest, ubuntu-latest, windows-latest]
1817
include:
1918
# Add the maya update versions here

src/python/meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ endif
2424
if py_script_build or py_wheel_build
2525
install_subdir(
2626
'simplexui',
27-
install_dir: meson.project_source_root() / 'scripts',
27+
install_dir: pyinstall_dir,
2828
exclude_files: ['_version.py.in', 'meson.build'],
2929
)
3030
fs = import('fs')
3131
if not fs.is_file('simplexui/_version.py')
3232
version_py = configure_file(
3333
input: 'simplexui/_version.py.in',
3434
output: '_version.py',
35-
install_dir: meson.project_source_root() / 'scripts' / 'simplexui',
35+
install_dir: pyinstall_dir / 'simplexui',
3636
configuration : conf_data,
3737
)
3838
endif

0 commit comments

Comments
 (0)