improve
This commit is contained in:
parent
273bcbcb8f
commit
52e5a345cf
|
@ -106,7 +106,8 @@ async def block_skylinks_from_airtable():
|
|||
cached_files_count = int(exec('docker exec -it nginx bash -c "' + cached_files_command + ' | wc -l"') or 0)
|
||||
if cached_files_count:
|
||||
total_cached_files_count+= cached_files_count
|
||||
exec('docker exec -it nginx bash -c "' + cached_files_command + ' | xargs rm"')
|
||||
removed = int(exec('docker exec -it nginx bash -c "' + cached_files_command + ' | xargs -r rm -v | wc -l"'))
|
||||
print(removed)
|
||||
|
||||
if total_cached_files_count == 0:
|
||||
return print("No nginx cached files matching blocked skylinks were found")
|
||||
|
|
Reference in New Issue