From ef5704678eb9f07a775b51f697e68ab6b380dd3e Mon Sep 17 00:00:00 2001 From: Vitaliy Gulyy Date: Mon, 16 Mar 2020 16:31:23 +0200 Subject: [PATCH 1/2] Use the latest yeoman-plugin Signed-off-by: Vitaliy Gulyy --- dockerfiles/theia/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/theia/build.sh b/dockerfiles/theia/build.sh index 4f0550a86..a0007e3c7 100755 --- a/dockerfiles/theia/build.sh +++ b/dockerfiles/theia/build.sh @@ -22,9 +22,9 @@ tar rf ${DIR}/asset-che-theia.tar .git-che-theia-sha1 gzip -f ${DIR}/asset-che-theia.tar # Download plugins -THEIA_YEOMAN_PLUGIN="${DIR}/asset-untagged-c11870b25a17d20bb7a7-theia_yeoman_plugin.theia" +THEIA_YEOMAN_PLUGIN="${DIR}/asset-untagged-theia_yeoman_plugin.theia" if [ ! -f "${THEIA_YEOMAN_PLUGIN}" ]; then - curl -L -o ${THEIA_YEOMAN_PLUGIN} https://github.com/eclipse/theia-yeoman-plugin/releases/download/untagged-c11870b25a17d20bb7a7/theia_yeoman_plugin.theia + curl -L -o ${THEIA_YEOMAN_PLUGIN} https://github.com/eclipse/theia-yeoman-plugin/releases/download/untagged-8a7963262e021dab8ae0/theia_yeoman_plugin.theia fi init --name:theia "$@" From b61d5719899dca8d629d94e8419016cd1f204cc2 Mon Sep 17 00:00:00 2001 From: nickboldt Date: Mon, 16 Mar 2020 15:41:59 -0400 Subject: [PATCH 2/2] Use the latest yeoman-plugin (#668) (part 2) Change-Id: I43fe01fbc2275b8d32219a54bbc36590af1711f6 Signed-off-by: nickboldt --- dockerfiles/theia/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/theia/Dockerfile b/dockerfiles/theia/Dockerfile index 5dbbfffbb..87dc8271b 100644 --- a/dockerfiles/theia/Dockerfile +++ b/dockerfiles/theia/Dockerfile @@ -95,7 +95,7 @@ RUN if [ -z $GITHUB_TOKEN ]; then unset GITHUB_TOKEN; fi && \ cd plugins && ./foreach_yarn # Add yeoman generator & vscode git plug-ins -COPY asset-untagged-c11870b25a17d20bb7a7-theia_yeoman_plugin.theia /home/theia-dev/theia-source-code/production/plugins/theia_yeoman_plugin.theia +COPY asset-untagged-theia_yeoman_plugin.theia /home/theia-dev/theia-source-code/production/plugins/theia_yeoman_plugin.theia # change permissions RUN find production -exec sh -c "chgrp 0 {}; chmod g+rwX {}" \; 2>log.txt