[go: up one dir, main page]

File: prelude.in

package info (click to toggle)
findent 2.8.2-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 1,756 kB
  • sloc: sh: 3,365; cpp: 2,780; fortran: 1,214; lex: 324; yacc: 246; makefile: 155; python: 155; lisp: 52
file content (17 lines) | stat: -rw-r--r-- 261 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
rp()
{
   # poor man's realpath
   cd "$1"
   pwd
}

export FINDENT=`rp ../src`/findent
export WFINDENT=`rp ../scripts`/wfindent
if [ "$WINDOWS" = yes ]; then
   FINDENT=$FINDENT.exe
fi
dir=`basename $0`.tmpdir
rm -rf $dir
mkdir $dir
cd $dir
# vim: filetype=sh