Skip to content

Commit 79ce9b5

Browse files
param requires double quotes instead of single (#82)
1 parent 8939ba2 commit 79ce9b5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.ado/android-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
inputs:
9797
gradleWrapperFile: gradlew
9898
# workingDirectory: src\react-native\
99-
options: -Pparam='excludeLibs'
99+
options: -Pparam="excludeLibs"
100100
tasks: installArchives
101101
publishJUnitResults: false
102102
#testResultsFiles: '**/TEST-*.xml' # Required when publishJUnitResults == True

.ado/publish.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ function doPublish() {
6161

6262
if (!onlyTagSource) {
6363
// -------- Generating Android Artifacts with JavaDoc
64-
// -Pparam='excludeLibs' - This argument will not package the DSOs in ReactAndroid aar
65-
exec("gradlew -Pparam='excludeLibs' installArchives");
64+
// -Pparam="excludeLibs" - This argument will not package the DSOs in ReactAndroid aar
65+
exec("gradlew -Pparam=\"excludeLibs\" installArchives");
6666

6767
// undo uncommenting javadoc setting
6868
exec("git checkout ReactAndroid/gradle.properties");

0 commit comments

Comments
 (0)