Merge "Fix: symlink bin/arm directory is not handled correctly"
diff --git a/apex/apex.go b/apex/apex.go
index 4e6c0b1..8b0f385 100644
--- a/apex/apex.go
+++ b/apex/apex.go
@@ -1031,7 +1031,7 @@
if f.installDir == "bin" || strings.HasPrefix(f.installDir, "bin/") {
executablePaths = append(executablePaths, pathInApex)
for _, s := range f.symlinks {
- executablePaths = append(executablePaths, filepath.Join("bin", s))
+ executablePaths = append(executablePaths, filepath.Join(f.installDir, s))
}
} else {
readOnlyPaths = append(readOnlyPaths, pathInApex)