You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
357 B
20 lines
357 B
#!/bin/bash
|
|
# build.sh
|
|
# GPLv3+
|
|
set -x
|
|
|
|
# A function to jump to application's root, default .../forksand-it-manual
|
|
cd $(echo $PWD | sed -e "s/\(.*\/forksand-it-manual\)\/.*/\1/") && echo "current path: $PWD"
|
|
rootPath=$PWD
|
|
|
|
cd source || exit
|
|
rm ./*.aux
|
|
rm ./*.l*
|
|
rm ./*.glo
|
|
rm ./*.idx
|
|
rm ./*.out
|
|
rm ./*.pyg
|
|
rm ./*.toc
|
|
|
|
rm ./_minted-forksand-it-manual/*.pyg*
|