mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
13 lines
179 B
Bash
Executable file
13 lines
179 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd ../yo
|
|
|
|
PATH=`pwd`/tmp/bin:$PATH
|
|
yodl2txt --no-warnings -l3 cplusplus
|
|
|
|
if [ $? != 0 ] ; then
|
|
echo text conversion failed
|
|
exit 1
|
|
fi
|
|
|
|
mv cplusplus.txt ../zip
|