Heray-Was-Here
Server : Apache
System : Linux vps43555.mylogin.co 3.10.0-1160.53.1.vz7.185.3 #1 SMP Tue Jan 25 12:49:12 MSK 2022 x86_64
User : redsea ( 60651)
PHP Version : 7.4.32
Disable Function : NONE
Directory :  /ffmpeg/ffmpeg/tools/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //ffmpeg/ffmpeg/tools/bisect-create
#!/bin/sh

set -e

if test "bisect-create" = "`basename $0`" ; then
    echo tools/ffbisect created
    git show master:tools/bisect-create > tools/ffbisect
    chmod u+x tools/ffbisect
    exit 1
fi

if ! git show master:tools/bisect-create | diff - tools/ffbisect > /dev/null ; then
    echo updating tools/ffbisect script to HEAD.
    git show master:tools/bisect-create > tools/ffbisect
    chmod u+x tools/ffbisect
    tools/ffbisect $*
    exit 0
fi

case "$1" in
    need)
        case $2 in
            ffmpeg|ffplay|ffprobe)
                echo $2.c >> tools/bisect.need
            ;;
        esac
    ;;
    start|reset)
        echo . > tools/bisect.need
        git bisect $*
    ;;
    skip)
        git bisect $*
    ;;
    good|bad)
        git bisect $*

        until ls `cat tools/bisect.need` > /dev/null 2> /dev/null; do
            git bisect skip || break
        done
    ;;
    run)
       shift # remove "run" from arguments
       git bisect run sh -c "ls \`cat tools/bisect.need\` > /dev/null 2> /dev/null || exit 125; \"\$@\"" sh "$@"
    ;;
esac

Hry