Skip to content
Snippets Groups Projects
Commit a291766f authored by Riccardo Maria Bianchi's avatar Riccardo Maria Bianchi :sunny:
Browse files

Fix unzip target folder by removing nested folders

parent 9dcf6a05
No related branches found
No related tags found
1 merge request!1Update image to 24.04 LTS (originally was: 24.10)
Pipeline #11118036 failed
......@@ -84,7 +84,7 @@ RUN mkdir -p build_coin && \
cd build_coin && \
# wget https://github.com/coin3d/coin/releases/download/Coin-${Coin_VERSION}/coin-${Coin_VERSION}-src.tar.gz && \
wget https://geomodel.web.cern.ch/sources/coin-${Coin_VERSION}-src.zip && \
unzip coin-${Coin_VERSION}-src.zip -d coin && \
unzip -j coin-${Coin_VERSION}-src.zip -d coin && \
mkdir build && \
cd build && \
cmake -DCMAKE_BUILD_TYPE=Debug \
......@@ -102,7 +102,7 @@ RUN pwd; ls && \
mkdir -p build_soqt && \
cd build_soqt && \
wget https://geomodel.web.cern.ch/sources/coin-${SOQT_VERSION}-src.zip && \
unzip soqt-${SOQT_VERSION}-src.zip -d soqt && \
unzip -j soqt-${SOQT_VERSION}-src.zip -d soqt && \
mkdir build && \
cd build && \
cmake -DCMAKE_BUILD_TYPE=Debug \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment