| author | ymh <ymh.work@gmail.com> |
| Mon, 07 Apr 2014 17:41:35 +0200 | |
| changeset 626 | 7b983f1b7040 |
| parent 609 | 736fdedb7774 |
| child 628 | ecf0e467eeb8 |
| permissions | -rwxr-xr-x |
| 597 | 1 |
#!/usr/bin/env bash |
2 |
||
3 |
pushd `dirname $0` > /dev/null |
|
4 |
SCRIPTPATH=`pwd -P` |
|
5 |
popd > /dev/null |
|
6 |
||
7 |
ROOTPATH="$SCRIPTPATH/.." |
|
8 |
||
9 |
pushd "$ROOTPATH" > /dev/null |
|
10 |
||
|
609
736fdedb7774
clean the test-suite folder. create necessary files in dev env
ymh <ymh.work@gmail.com>
parents:
597
diff
changeset
|
11 |
rm -rfv .installed.cfg .mr.developer.cfg parts/ eggs/ develop-eggs/ bin/ \ |
|
736fdedb7774
clean the test-suite folder. create necessary files in dev env
ymh <ymh.work@gmail.com>
parents:
597
diff
changeset
|
12 |
src/cm/settings_local.py src/cm/scripts/test-suite/workspace.info*.js \ |
|
736fdedb7774
clean the test-suite folder. create necessary files in dev env
ymh <ymh.work@gmail.com>
parents:
597
diff
changeset
|
13 |
src/cm/scripts/test-suite/{clean-testserver.sh,karma.conf.full.js} \ |
|
736fdedb7774
clean the test-suite folder. create necessary files in dev env
ymh <ymh.work@gmail.com>
parents:
597
diff
changeset
|
14 |
src/cm/scripts/test-suite/{start-test-suite-full.sh,start-testserver.sh} |
|
736fdedb7774
clean the test-suite folder. create necessary files in dev env
ymh <ymh.work@gmail.com>
parents:
597
diff
changeset
|
15 |
|
| 597 | 16 |
find . -name '*.pyc' -or -name '*.egg-info' | xargs rm -rvf |
17 |
||
18 |
popd > /dev/null |
|
19 |