blob: 162584f2374363cfb827d420b63b25231487ab36 (
plain)
1
2
3
4
5
|
steps:
# Because we run the compile in a docker (under root), we are not owner
# of the 'bundles' folder. Fix that by executing a chown on it.
- bash: sudo chown -R $(id -u):$(id -g) build/bundles
displayName: 'Claim bundles folder back'
|