-
-
Notifications
You must be signed in to change notification settings - Fork 423
/
clean.sh
25 lines (19 loc) · 807 Bytes
/
clean.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
echo cleaing bin, obj, and /louthy.github.io/language-ext
# Artifacts is where the DLLs are compiled to
Artifacts=/media/paul/raid/dev/artifacts
# $LangExtRoot is where the source code root should be (i.e. c:\dev\language-ext)
LangExtRoot=/media/paul/raid/dev/language-ext
rm -rf $Artifacts
rm -rf $LangExtRoot/LanguageExt.Core/bin
rm -rf $LangExtRoot/LanguageExt.Pipes/bin
rm -rf $LangExtRoot/LanguageExt.Parsec/bin
rm -rf $LangExtRoot/LanguageExt.FSharp/bin
rm -rf $LangExtRoot/LanguageExt.Rx/bin
rm -rf $LangExtRoot/LanguageExt.Sys/bin
rm -rf $LangExtRoot/LanguageExt.Core/obj
rm -rf $LangExtRoot/LanguageExt.Pipes/obj
rm -rf $LangExtRoot/LanguageExt.Parsec/obj
rm -rf $LangExtRoot/LanguageExt.FSharp/obj
rm -rf $LangExtRoot/LanguageExt.Rx/obj
rm -rf $LangExtRoot/LanguageExt.Sys/obj
echo cleaned