Skip to content

Commit

Permalink
fix new libs directory in gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
fk3 committed Oct 19, 2023
1 parent c34ced4 commit a5c2850
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -154,17 +154,19 @@ cython_debug/

.idea/

# info.ini will be written (and updated) by SweepMe! on every start
# info.ini and run.ini will be generated by server or
# written (and updated) by SweepMe! on every start
# and we don't want that in the repository because it's not an actual change
/src/*/info.ini
/src/*/run.ini

# Instrument drivers can ship with libraries, they need to be complete and may
# contain any files that have been excluded previously.
# This section must be last in the .gitignore
!/src/*/libs/**
!/src/*/libs_39_32/**
!/src/*/libs_39_64/**
!/src/*/libraries/libs_39_32/**
!/src/*/libraries/libs_39_64/**
# Exception: __pycache__/ we don't even want below libs
/src/*/libs/**/__pycache__/
/src/*/libs_39_32/**/__pycache__/
/src/*/libs_39_64/**/__pycache__/
/src/*/libraries/libs_39_32/**/__pycache__/
/src/*/libraries/libs_39_64/**/__pycache__/

0 comments on commit a5c2850

Please sign in to comment.