__main__.py 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #! /usr/bin/env bash
  2. #
  3. # Copyright (C) 2013-2017 Bilibili
  4. # Copyright (C) 2013-2017 Zhang Rui <bbcallen@gmail.com>
  5. #
  6. # Licensed under the Apache License, Version 2.0 (the "License");
  7. # you may not use this file except in compliance with the License.
  8. # You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. #
  18. import sys
  19. import os
  20. import fnmatch
  21. from sets import Set
  22. if not __package__:
  23. path = os.path.join(os.path.dirname(__file__), os.pardir)
  24. sys.path.insert(0, path)
  25. from copyrighter.CRContext import CRContext
  26. from copyrighter.CRFile import CRFile
  27. context = CRContext();
  28. target_list = Set([
  29. 'ijkmedia',
  30. 'extra/init-extra.sh'
  31. ])
  32. for target in Set(['']):
  33. # for target in target_list:
  34. CRFile.update_path(context, target)