[GITPOD] change extract directory to automatically extract to RosBE, and set tar...
authorLucas Puntillo <62703475+puntillol59@users.noreply.github.com>
Mon, 17 May 2021 14:13:10 +0000 (10:13 -0400)
committerVictor Perevertkin <victor@perevertkin.ru>
Mon, 27 Dec 2021 23:14:47 +0000 (02:14 +0300)
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

index 1fda574..d1dee89 100644 (file)
@@ -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