diff options
author | cyberta <cyberta@riseup.net> | 2023-01-24 01:01:02 +0100 |
---|---|---|
committer | cyberta <cyberta@riseup.net> | 2023-01-24 01:01:02 +0100 |
commit | 2ce81f736c15a431de9c95059f84dea72c9e2556 (patch) | |
tree | 409fe38e03a02590d3ab045d3f81c4b460c1dff1 /fastlane/Fastfile | |
parent | 7d0a1f8d8057faa74035de0cee262a46c6fbbe00 (diff) |
specify input directory for frameit (framed images)
Diffstat (limited to 'fastlane/Fastfile')
-rw-r--r-- | fastlane/Fastfile | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/fastlane/Fastfile b/fastlane/Fastfile index a0e25930..99d540ed 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -59,7 +59,12 @@ platform :android do # Prepare builds for Automatic UI Tests build_bitmask_for_screengrab capture_android_screenshots - frameit(white: true) + Dir.chdir("../src/normal/fastlane/metadata") do + frameit( + white: true, + path: "." + ) + end # deliver end @@ -67,7 +72,13 @@ platform :android do # Prepare builds for Automatic UI Tests build_custom_for_screengrab capture_android_screenshots - frameit(white: true) + Dir.chdir("../src/custom/fastlane/metadata") do + frameit( + white: true, + path: "." + ) + end + # deliver end |