From be9b820a590f01dc39f2c728888f4f9d6c6ae91e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Wed, 27 Mar 2019 07:35:33 -0700 Subject: [PATCH] Fix broken android app build We are forced to clone the full edx-app-android repo: if not, the build crashes, complaining of missing git names. --- tutor/templates/build/android/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutor/templates/build/android/Dockerfile b/tutor/templates/build/android/Dockerfile index 1094c0e..76d9969 100644 --- a/tutor/templates/build/android/Dockerfile +++ b/tutor/templates/build/android/Dockerfile @@ -23,7 +23,7 @@ RUN wget https://dl.google.com/android/repository/sdk-tools-linux-${ANDROID_SDK_ RUN yes | /openedx/android-sdk/tools/bin/sdkmanager "platforms;android-27" 1> /dev/null # Install android app repo -RUN git clone https://github.com/edx/edx-app-android --branch master --depth 1 /openedx/edx-app-android +RUN git clone https://github.com/edx/edx-app-android --branch master /openedx/edx-app-android WORKDIR /openedx/edx-app-android # Install gradle and all dependencies