aboutsummaryrefslogtreecommitdiff
path: root/bundle.lua
Commit message (Collapse)AuthorAgeFilesLines
* Moved bundle.lua to scripts/bundle.lua to keep root cleanMartin Ridgers2022-01-201-183/+0
|
* An implementation of 'xmake bundle' for LinuxMartin Ridgers2022-01-201-0/+23
|
* Fixed incorrect zip file pathMartin Ridgers2022-01-201-1/+1
|
* Raise an error if a given vcpkg tool is not foundMartin Ridgers2022-01-201-0/+4
|
* 'xmake bundle' for MacMartin Ridgers2022-01-201-0/+33
|
* Answer Yes to everything xmake wants to do when bundlingMartin Ridgers2022-01-201-2/+3
|
* Xmake should be run before checking for sentry-native outputMartin Ridgers2022-01-201-2/+2
|
* Use os.tryrm instead of os.rm so failed deletes don't abortMartin Ridgers2022-01-201-1/+1
|
* Added support for using info-zip with 'xmake bundle'Martin Ridgers2022-01-201-0/+10
|
* Refactored 'xmake bundle' so steps can be reused on other platformsMartin Ridgers2022-01-201-57/+82
|
* Moved 'xmake bundle' implementation into bundle.luaMartin Ridgers2022-01-201-0/+87
This appears to be necessary in order to be able to split the bundling code up into functions. Functions implemented in xmake.lua files are not persistented in the global table by the time task.on_run() is called