mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
11 lines
284 B
Plaintext
11 lines
284 B
Plaintext
|
#!/bin/sh
|
||
|
home=/a/asami/portbuild/errorlogs
|
||
|
scripts=/a/asami/portbuild/scripts
|
||
|
dir1=3-latest
|
||
|
dir2=4-latest
|
||
|
|
||
|
cd $home/$dir1 && ${scripts}/processlogs
|
||
|
cd $home/$dir2 && ${scripts}/processlogs
|
||
|
cd $home && ${scripts}/comparelogs $dir1 $dir2
|
||
|
cd $home && ${scripts}/comparelogs $dir2 $dir1
|