Skip to content

Commit

Permalink
Updated gdc.sh.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Sep 15, 2024
1 parent 7252474 commit 8563709
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
11 changes: 10 additions & 1 deletion bin/stats/gdc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,16 @@ else
fi

date_created=$(git for-each-ref --format="%(creatordate:iso)" refs/tags/$TAG)
today=$(date +'%F %T')
if [[ "$date_created" == "" ]]; then
git pull
date_created=$(git for-each-ref --format="%(creatordate:iso)" refs/tags/$TAG)
fi

if [[ "$date_created" == "" ]]; then
echo "No tag ${TAG} found!"
exit 1
fi


echo "START DATE: $date_created"
echo " END DATE: $next_tag_date"
Expand Down
1 change: 1 addition & 0 deletions src/lib/mrvApp/mrvApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -879,6 +879,7 @@ namespace mrv
// plug-ins.
py::module::import("mrv2");


// Discover Python plugins
mrv2_discover_python_plugins();

Expand Down

0 comments on commit 8563709

Please sign in to comment.