This patch replaces PowerShell aliases for their real commands, see https://blogs.technet.microsoft.com/heyscriptingguy/2012/04/21/when-you-should-use-powershell-aliases/ For example; - use `Get-Location` instead of `pwd` - use `Set-Location` instead of `cd` - use `ForEach-Object` instead of the `%` shorthand - use `Write-Output` instead of `echo` Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit 6130c89ccec5262c25b91b3226a6ef2240bfde3b) Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 4f0911d9122bf73d7efb90a50444cd6e52a09a96 Component: engine
This directory holds scripts called by make.sh in the parent directory.
Each script is named after the bundle it creates. They should not be called directly - instead, pass it as argument to make.sh, for example:
./hack/make.sh binary ubuntu
# Or to run all default bundles:
./hack/make.sh
To add a bundle:
- Create a shell-compatible file here
- Add it to $DEFAULT_BUNDLES in make.sh