Skip to content

Commit

Permalink
remove temporary, ignored, or untracked files
Browse files Browse the repository at this point in the history
  • Loading branch information
gardner48 committed Nov 3, 2023
1 parent cf8964d commit 5763ed4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scripts/tarscript
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,15 @@ done
rm -rf $tmpdir/doc/shared/__pycache__
find $tmpdir -name "*~" -delete
find $tmpdir -name "*.orig" -delete
find $tmpdir -name "#*#" -delete
find $tmpdir -name ".DS_Store" -delete

# Remove ignored or untracked files that may have been added
cd $sundialsdir
for f in $(git ls-files --others --directory benchmarks cmake doc examples include scripts src test); do
rm -rf $tmpdir/$f
done
cd -

#---------------------------
# Create tar files
Expand Down

0 comments on commit 5763ed4

Please sign in to comment.