https://git.reactos.org/?p=reactos.git;a=commitdiff;h=a23249e13740ea83a4358…
commit a23249e13740ea83a43586d5ca11ca5fd753620e
Author: Lucas Puntillo <62703475+puntillol59(a)users.noreply.github.com>
AuthorDate: Mon May 17 10:13:10 2021 -0400
Commit: Victor Perevertkin <victor(a)perevertkin.ru>
CommitDate: Tue Dec 28 02:14:47 2021 +0300
[GITPOD] change extract directory to automatically extract to RosBE, and set tar to
verbose mode
change extract directory to automatically extract to RosBE, and set tar to verbose
mode shorting the waiting time for the user and have verbose mode activated to show if
there were any issues with the file itself. therefore helping the user and developer.
---
.gitpod.Dockerfile | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile
index 1fda5743294..d1dee8961b3 100644
--- a/.gitpod.Dockerfile
+++ b/.gitpod.Dockerfile
@@ -14,8 +14,7 @@ RUN sudo apt-get -q update && \
sudo rm -rf /var/lib/apt/lists/*
RUN wget
https://svn.reactos.org/amine/RosBEBinFull.tar.gz && \
- sudo tar -xzf RosBEBinFull.tar.gz -C /usr/local && \
- sudo mv /usr/local/RosBEBinFull /usr/local/RosBE && \
+ sudo tar -xzvf RosBEBinFull.tar.gz -C /usr/local --one-top-level=RosBE
--strip-components 1 && \
rm -f RosBEBinFull.tar.gz
RUN echo 'export PATH=/usr/local/RosBE/i386/bin:$PATH' >>
/home/gitpod/.profile