Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DockerfileBuildEnv
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ WORKDIR /tmp
#--------------------------------------------------------------------------------
ENV BOOST_VERSION 1.71.0
RUN export BOOST_VERSION_NAME=$( echo ${BOOST_VERSION} | tr '.' '_' ) && echo "boost name ${BOOST_VERSION_NAME}" && \
wget --no-check-certificate --quiet https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION}/source/boost_${BOOST_VERSION_NAME}.tar.gz \
wget --no-check-certificate --quiet https://archives.boost.io/release/${BOOST_VERSION}/source/boost_${BOOST_VERSION_NAME}.tar.gz \
&& tar xzf ./boost_${BOOST_VERSION_NAME}.tar.gz \
&& cd ./boost_${BOOST_VERSION_NAME} \
&& ./bootstrap.sh \
Expand Down
2 changes: 1 addition & 1 deletion src/sxs/src/sxsImageScaleSets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ namespace sxs {
f << "base_segmentation :";
lgl::Filename basename(filename);
lgl::String name = filename.stem().generic_string() + "_base.tif";
basename = imagename.parent_path();
basename = basename.parent_path();
basename/=name;
basename = ign::filesystem::make_relative(issfilename.parent_path(), basename);
f << basename.generic_string().c_str() << std::endl;
Expand Down