File: autogen.sh

package info (click to toggle)
python-cyclone 1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,388 kB
  • ctags: 1,372
  • sloc: python: 8,823; sh: 183; makefile: 13; sql: 12
file content (15 lines) | stat: -rwxr-xr-x 243 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

set -e
cd `dirname $0`
for d in `find . -type d -depth 1 -exec basename {} \;`
do
  name="appskel_$d.zip"
  skel="../../cyclone/${name}"
  echo Generating ${name}...
  rm -f $skel
  cd $d
  zip -r $skel .
  cd ..
  echo done
done