Signed-off-by: Marcin Woźniak <y0rune@aol.com>
This commit is contained in:
2021-04-20 21:46:53 +02:00
parent 88caa05069
commit a5cfb44c1c
6 changed files with 7 additions and 8 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash
LOGS=( $(sudo find /var/tmp/portage/ -mindepth 1 -maxdepth 5 -name "build.log") )
LOGS=( $(sudo find /var/tmp/portage/ -mindepth 1 -maxdepth 5 -name "build.log") $(sudo find /var/tmpnotmpfs/portage/ -mindepth 1 -maxdepth 5 -name "build.log") )
LEN=${#LOGS[@]}
for (( i=0; i<$LEN; i++ ));