This commit is contained in:
Sidharth Bamba
2021-09-23 21:42:10 +05:30
parent 789538809a
commit c0adb3afa7

View File

@@ -36,9 +36,8 @@ RUN echo ${RELEASE_STORE_FILE} | base64 -d >> app/navi-release-key.jks
RUN bash -c " \
if [ $FLAVOR = E2ETEST ] ; then \
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.CustomerDataCleanup
status=$?
if [ $status -ne 0 ]; then
./gradlew clean :app:testDevDebugUnitTest --tests com.naviapp.CustomerDataCleanup
if [ $? -eq 0 ]; then
echo "Failed to start my_first_process: $status"
exit $status
fi