Skip to content

Commit

Permalink
added file to blacklist
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisTimperley committed May 22, 2018
1 parent 664f0ef commit c916f99
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/orchestrator/orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,10 @@ def __is_file_mutable(self, fn: str) -> bool:
#
# TODO: ignore blacklisted files (e.g., Gazebo, ROS core code)
#

return True
blacklist = [
'src/yujin_ocs/yocs_cmd_vel_mux/src/cmd_vel_subscribers.cpp'
]
return fn not in blacklist

@property
def files(self) -> List[str]:
Expand Down

0 comments on commit c916f99

Please sign in to comment.