-
Notifications
You must be signed in to change notification settings - Fork 1
/
clean.sh
executable file
·35 lines (33 loc) · 1.05 KB
/
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
26
27
28
29
30
31
32
33
34
35
#! /usr/bin/env bash
DEAD_DIRS=(
"azure-pipelines.yml"
"DEVGUIDE.md"
"eng/common/templates"
"FSharp.sln"
"src/fsharp/fsc/fsc.fsproj"
"src/fsharp/FSharp.Build/FSharp.Build.fsproj"
"src/fsharp/FSharp.Compiler.nuget/Microsoft.FSharp.Compiler.nuspec"
"src/fsharp/FSharp.Compiler.Private/FSharp.Compiler.Private.fsproj"
"src/fsharp/FSharp.DependencyManager/xlf/"
"src/fsharp/fsi/fsi.fsproj"
"src/fsharp/fsiAnyCpu/fsiAnyCpu.fsproj"
"src/fsharp/Interactive.DependencyManager/xlf"
"src/fsharp/xlf"
"TESTGUIDE.md"
"tests/EndToEndBuildTests"
"tests/FSharp.Compiler.Private.Scripting.UnitTests"
"tests/FSharp.Compiler.UnitTests"
"tests/FSharp.Core.UnitTests"
"tests/fsharp/Compiler"
"tests/fsharp/conformance"
"tests/fsharp/core"
"tests/fsharp/FSharpSuite.Tests.fsproj"
"tests/fsharp/test-framework.fs"
"tests/fsharp/tests.fs"
"tests/fsharp/typecheck"
"tests/fsharpqa"
"tests/scripts"
"VisualFSharp.sln"
"vsintegration"
)
git rm -rf --ignore-unmatch ${DEAD_DIRS[*]}