We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ea5038 commit b2b1e03Copy full SHA for b2b1e03
.github/workflows/rebuildDependencies.yml
@@ -75,7 +75,11 @@ jobs:
75
shell: bash
76
run: |
77
cmakeVersion=3.31.5
78
- echo "$ANDROID_HOME/cmake/$cmakeVersion" | cat - "$GITHUB_PATH" > "$GITHUB_PATH"
+
79
+ newPathFile=$(mktemp)
80
+ echo "$ANDROID_HOME/cmake/$cmakeVersion" | cat - "$GITHUB_PATH" > "$newPathFile"
81
+ mv -f "$newPathFile" "$GITHUB_PATH"
82
83
echo "
84
[platform_tool_requires]
85
cmake/$cmakeVersion
0 commit comments