Skip to content

Commit f0ec668

Browse files
authored
Fix exception in frontend. (#3630)
App Engine instances don't have ROOT_DIR defined.
1 parent 7dac2e7 commit f0ec668

File tree

1 file changed

+1
-1
lines changed
  • src/clusterfuzz/_internal/platforms/android

1 file changed

+1
-1
lines changed

src/clusterfuzz/_internal/platforms/android/flash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
]
5454
FLASH_DEFAULT_BUILD_TARGET = '-next-userdebug'
5555
FLASH_DEFAULT_IMAGES_DIR = os.path.join(
56-
environment.get_value('ROOT_DIR'), 'bot', 'inputs', 'images')
56+
environment.get_value('ROOT_DIR', ''), 'bot', 'inputs', 'images')
5757
FLASH_INTERVAL = 1 * 24 * 60 * 60
5858
FLASH_RETRIES = 3
5959
FLASH_REBOOT_BOOTLOADER_WAIT = 15

0 commit comments

Comments
 (0)