Skip to content

Commit

Permalink
Fix Figma Token reading
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyfroehlich committed Sep 12, 2023
1 parent 9056480 commit 1e1e1cb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion integration-tests/validation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ android {
versionName = "1.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
testInstrumentationRunnerArguments["FIGMA_ACCESS_TOKEN"] = designcompose.figmaToken.get()
if (designcompose.figmaToken.isPresent) {
testInstrumentationRunnerArguments["FIGMA_ACCESS_TOKEN"] =
designcompose.figmaToken.get()
}
vectorDrawables.useSupportLibrary = true
}

Expand Down

0 comments on commit 1e1e1cb

Please sign in to comment.