forked from LostArtefacts/TRX
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjustfile.tr2
More file actions
13 lines (12 loc) · 752 Bytes
/
justfile.tr2
File metadata and controls
13 lines (12 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
[group('tr2')]
tr2-build-win-installer: (image-win-installer "0") (_docker_run "rrdash/trx-installer" "2")
[group('tr2')]
tr2-package-linux target='release' *args: (trx-build-linux target) (_docker_run "rrdash/trx-linux" "package" "--tr-version" "2" args)
[group('tr2')]
tr2-package-win target='release' *args: (trx-build-win target) (_docker_run "rrdash/trx-win" "package" "--tr-version" "2" args)
[group('tr2')]
tr2-package-win-installer target='release' *args: \
(trx-build-win target) \
(_docker_run "rrdash/trx-win" "package" "--tr-version" "2" "-o" "tools/installer/TR2X_Installer/Resources/release.zip") \
(tr2-build-win-installer) \
(_docker_run "rrdash/trx-win" "package" "--platform" "win-installer" "--tr-version" "2" args)