1
0

fix(manifest): Update depot_tools installation to preserve file attributes as a fix

This commit is contained in:
Jose Daniel G. Percy 2025-05-07 03:39:03 +08:00
parent 1448804f42
commit 9ef60e4efb

View File

@ -45,8 +45,9 @@ modules:
# Install it into /app/depot_tools within the build environment. # Install it into /app/depot_tools within the build environment.
# The source '.' is now /sources/depot_tools # The source '.' is now /sources/depot_tools
- install -d /app/depot_tools - install -d /app/depot_tools
- cp -r ./* /app/depot_tools/ - cp -a ./* /app/depot_tools/ # -a preserves symlinks, ownership (if possible), and modes
- chmod -R u+rX /app/depot_tools # Make files/dirs owner-writable, and all-readable/all-executable(X)
- chmod -R u+rwX,go+rX /app/depot_tools
sources: sources:
# Use the directory copied into the Docker image # Use the directory copied into the Docker image
- type: dir - type: dir