Skip to content

Commit

Permalink
Force some moves
Browse files Browse the repository at this point in the history
  • Loading branch information
nothingface0 committed Nov 30, 2023
1 parent 564c171 commit f4f96f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deploy_dqmgui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -268,14 +268,14 @@ install_classlib() {
install_boost_gil() {
mkdir -p $INSTALLATION_DIR/$DMWM_GIT_TAG/sw/external/src/
tar -xzf "$SCRIPT_DIR/boost_gil/boost_gil.tar.gz" -C /tmp
mv /tmp/boost_gil/include/boost "$INSTALLATION_DIR/$DMWM_GIT_TAG/sw/external/src/boost"
mv -f /tmp/boost_gil/include/boost "$INSTALLATION_DIR/$DMWM_GIT_TAG/sw/external/src/boost"
}

install_gil_numeric() {
NUMERIC_TMP_DIR=/tmp/numeric
tar -xzf "$SCRIPT_DIR/numeric/numeric.tar.gz" -C /tmp
mkdir -p "$INSTALLATION_DIR/$DMWM_GIT_TAG/sw/external/src/boost/gil/extension/"
mv "$NUMERIC_TMP_DIR" "$INSTALLATION_DIR/$DMWM_GIT_TAG/sw/external/src/boost/gil/extension/numeric"
mv -f "$NUMERIC_TMP_DIR" "$INSTALLATION_DIR/$DMWM_GIT_TAG/sw/external/src/boost/gil/extension/numeric"
}

install_dmwm() {
Expand All @@ -284,7 +284,7 @@ install_dmwm() {
mkdir -p $DMWM_TMP_DIR
tar -xzf "$SCRIPT_DIR/dmwm/dmwm.tar.gz" -C /tmp
# Move dqmgui-related scripts from DMWM to the config folder
mv "$DMWM_TMP_DIR/dqmgui" "$INSTALLATION_DIR/$DMWM_GIT_TAG/config/"
mv -f "$DMWM_TMP_DIR/dqmgui" "$INSTALLATION_DIR/$DMWM_GIT_TAG/config/"

rm -rf $DMWM_TMP_DIR
}
Expand Down

0 comments on commit f4f96f7

Please sign in to comment.