Skip to content

Commit

Permalink
TEMP
Browse files Browse the repository at this point in the history
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
  • Loading branch information
masatake committed Dec 26, 2022
1 parent a7042c3 commit e49b63f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tmain/ptag-proc-cwd.d/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
CTAGS=$1

. ../utils.sh
exit_if_win32 $CTAGS
# exit_if_win32 $CTAGS

O="--quiet --options=NONE "

Expand All @@ -13,7 +13,7 @@ O="--quiet --options=NONE "
${CTAGS} $O \
--extras=+p --pseudo-tags=TAG_PROC_CWD \
-o - \
/input.c 2>/dev/null
/input.c 2>/dev/null | sed -e "s|[A-Z]:/[^/]*||"
)

(
Expand All @@ -33,7 +33,7 @@ O="--quiet --options=NONE "
${CTAGS} $O \
--extras=+p --pseudo-tags=TAG_PROC_CWD \
-o - \
input2.c | sed -e "s/$pid//g" | sed -e "s|$pwd|/tmp|"
input2.c | sed -e "s/$pid//g" | sed -e "s|$pwd|/tmp|" | sed -e "s|[A-Z]:/[^/]*||"
rm input2.c
cd ..
rmdir "$dir"
Expand Down

0 comments on commit e49b63f

Please sign in to comment.