Skip to content

Commit

Permalink
Fix incorrect path in findNDK
Browse files Browse the repository at this point in the history
  • Loading branch information
iKirby committed May 20, 2024
1 parent 2e24f6a commit 1133988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/internal/build_shared/sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func findNDK() bool {
})
for _, versionName := range versionNames {
currentNDKPath := filepath.Join(androidSDKPath, "ndk", versionName)
if rw.FileExists(filepath.Join(androidSDKPath, versionFile)) {
if rw.FileExists(filepath.Join(currentNDKPath, versionFile)) {
androidNDKPath = currentNDKPath
log.Warn("reproducibility warning: using NDK version " + versionName + " instead of " + fixedVersion)
return true
Expand Down

0 comments on commit 1133988

Please sign in to comment.