mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-31 18:44:48 +01:00
5904152eeb
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@37371 a95241bf-73f2-0310-859d-f6bbb57e9c96
9 lines
224 B
Bash
Executable File
9 lines
224 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# Given an identifier that is an index into the current patch list,
|
|
# record the corresponding SVN number to the list of known failures.
|
|
|
|
ID=$1
|
|
REV=`${REG_IDS} -f index -t rev ${ID}`
|
|
echo $REV >> ${REG_FAILLIST}
|