Skip to content

Commit 004d811

Browse files
committed
Merge branch 'master' of https://github.com/fsharp/FSharp.Compiler.Service into i60
2 parents b394211 + 533e728 commit 004d811

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,13 @@ For more information about the project, see:
1717
Build and Test
1818
-----
1919

20-
.NET Framework:
20+
On Windows:
2121

22-
fcs\build.cmd Test.NetFx
22+
.\fcs\build.cmd Test
2323

24-
fcs/build.sh Test.NetFx
24+
On Linux:
2525

26-
.NET Core / .NET Standard
27-
28-
fcs\build.cmd Test.NetStd
29-
30-
fcs/build.sh Test.NetStd
26+
./fcs/build.sh Test
3127

3228
Packages:
3329

docs/devnotes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ <h2><a name="Building-and-NuGet" class="anchor" href="#Building-and-NuGet">Build
7676
<td class="snippet"><pre class="fssnip"><code lang="text">git clone https://github.com/fsharp/FSharp.Compiler.Service
7777
cd FSharp.Compiler.Service
7878
</code></pre></td></tr></table>
79-
<p>Now follow build everything by running <code>build.cmd</code> (Windows) or <code>build.sh</code> (Linux + Mac OS).
79+
<p>Now follow build everything by running <code>.\fcs\build.cmd</code> (Windows) or <code>./fcs/build.sh</code> (Linux + Mac OS).
8080
The output will be located in the <code>bin</code> directory. If you also wish to build the documentation
8181
and NuGet package, run <code>build Release</code> (this also attempts to publish the documentation to
8282
GitHub, which only works if you have access to the GitHub repository).</p>

fcs/build.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ then
44
# use .Net
55
cmd fcs/build.cmd $@
66
else
7-
cd fcs
7+
if [[ "$PWD" != *fcs ]]; then
8+
cd fcs
9+
fi
810

911
# use mono
1012
if [[ ! -e ~/.config/.mono/certs ]]; then

0 commit comments

Comments
 (0)