Skip to content

Commit

Permalink
ensure that objects and modules directories exist prior to installation
Browse files Browse the repository at this point in the history
  • Loading branch information
dalekopera committed Aug 14, 2024
1 parent 8d42709 commit 7297096
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions bin/install_cutest_alone
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,16 @@ if [[ $NEWCC == "true" ]]; then
CC=$MATLABGCC
fi

# ensure that objects and modules directories exist

if [[ ! -e $SIFDECODE/objects ]]; then
$MKDIR $SIFDECODE/objects
fi

if [[ ! -e $SIFDECODE/modules ]]; then
$MKDIR $SIFDECODE/modules
fi

# create architecture-dependent object and module directories

OBJDIR=$CUTEST/objects/$VERSION
Expand Down

0 comments on commit 7297096

Please sign in to comment.