From f1261bf14fc4c078f3ca8ab6be49f6dfdb6a1a8f Mon Sep 17 00:00:00 2001 From: Martin 'JaMa' Jansa Date: Sat, 29 May 2021 12:10:41 +0200 Subject: [PATCH] editor: fix typo (#119) * I guess the author meant chmod here --- editor/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/Dockerfile b/editor/Dockerfile index 27ba10b0..1e700bad 100644 --- a/editor/Dockerfile +++ b/editor/Dockerfile @@ -88,7 +88,7 @@ RUN [ `echo $version-$module | grep -v '^\(2018.3\|2018.4\).*-android'` ] && exi && apt-get update -qq \ && apt-get install -qq -y --no-install-recommends unzip \ && mkdir -p ${ANDROID_SDK_ROOT} \ - && chown -R 777 ${ANDROID_INSTALL_LOCATION} \ + && chmod -R 777 ${ANDROID_INSTALL_LOCATION} \ && wget -q https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip -O /tmp/android-sdk.zip \ && unzip -q /tmp/android-sdk.zip -d ${ANDROID_SDK_ROOT} \ \