-
-
Notifications
You must be signed in to change notification settings - Fork 426
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
39 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
echo cleaing bin, obj, and /louthy.github.io/language-ext | ||
|
||
# $BestFormBin is where the bestform.exe is compiled to | ||
Artifacts=/home/paul/Documents/dev/artifacts | ||
|
||
# $BestFormBin is where the bestform.exe is compiled to | ||
BestFormBin=/home/paul/Documents/dev/best-form/bestform | ||
|
||
# $LangExtRoot is where the source code root should be (i.e. c:\dev\language-ext) | ||
LangExtRoot=/home/paul/Documents/dev/language-ext | ||
|
||
# $LangExtDocs is where the docs root should be (i.e. c:\dev\louthy.github.io) | ||
LangExtDocs=/home/paul/Documents/dev/louthy.github.io | ||
|
||
rm -rf $Artifacts | ||
|
||
rm -rf $LangExtRoot/LanguageExt.Core/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.Parsec/obj | ||
rm -rf $LangExtRoot/LanguageExt.FSharp/obj | ||
rm -rf $LangExtRoot/LanguageExt.Rx/obj | ||
rm -rf $LangExtRoot/LanguageExt.Sys/obj | ||
|
||
rm -rf $LangExtDocs/language-ext | ||
|
||
echo cleaned |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters