mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
Ignore binary file match derp
This commit is contained in:
parent
0e5c8a4504
commit
9db63cc2ce
1 changed files with 1 additions and 1 deletions
|
@ -443,7 +443,7 @@ class App(TestSuite):
|
||||||
|
|
||||||
@test()
|
@test()
|
||||||
def remaining_replacebyyourapp(self):
|
def remaining_replacebyyourapp(self):
|
||||||
if os.system("grep -qr 'REPLACEBYYOURAPP' %s 2>/dev/null" % self.path) == 0:
|
if os.system("grep -I -qr 'REPLACEBYYOURAPP' %s 2>/dev/null" % self.path) == 0:
|
||||||
yield Warning("You should replace all occurences of REPLACEBYYOURAPP.")
|
yield Warning("You should replace all occurences of REPLACEBYYOURAPP.")
|
||||||
|
|
||||||
#######################################
|
#######################################
|
||||||
|
|
Loading…
Reference in a new issue