This commit is contained in:
Karol Wypchlo 2021-07-18 09:09:55 +02:00
parent 273bcbcb8f
commit 52e5a345cf
1 changed files with 2 additions and 1 deletions

View File

@ -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")