From 7c722ea22244c30c27fb1d464d011907fd86b1bb Mon Sep 17 00:00:00 2001 From: Jan Mulder Date: Wed, 17 Jul 2019 08:59:50 +0200 Subject: [PATCH] Android Docker: make a nice version tag file Trivial. The final touch command was missing the proper quotes, so it created a bunch of strangely names files from the date command. Just good for the developers that like to peek into the docker image. Signed-off-by: Jan Mulder --- scripts/docker/android-build-container/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/docker/android-build-container/Dockerfile b/scripts/docker/android-build-container/Dockerfile index 5b9f88f7c..2b7107601 100644 --- a/scripts/docker/android-build-container/Dockerfile +++ b/scripts/docker/android-build-container/Dockerfile @@ -54,4 +54,4 @@ RUN cd /android && \ du -sh * RUN apt-get clean RUN cd /android/android-ndk-r18b/toolchains && ln -s x86_64-4.9 x86-64-4.9 -RUN touch /android/finished-`date` +RUN touch /android/finished-"`date`"