Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2412a42

Browse files
committed
Merge pull requestfsharp#98 from rneatherway/master
Fix forfsharp#97
2 parents4493a11 +83bdb61 commit2412a42

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎launcher.in‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
#!/bin/sh
22
EXEC="exec"
33

4-
iftest x$1 = x--debug;then
4+
iftest x"$1" = x--debug;then
55
DEBUG=--debug
66
shift
77
fi
88

9-
iftest x$1 = x--gdb;then
9+
iftest x"$1" = x--gdb;then
1010
shift
1111
EXEC="gdb --eval-command=run --args"
1212
fi
1313

14-
iftest x$1 = x--valgrind;then
14+
iftest x"$1" = x--valgrind;then
1515
shift
1616
EXEC="valgrind$VALGRIND_OPTIONS"
1717
fi
1818

1919
MONO_GC_OPTIONS=@mono_gc_options@
20-
iftest x$1 = x--gc=boehm;then
20+
iftest x"$1" = x--gc=boehm;then
2121
shift
2222
MONO_GC_OPTIONS=--gc=boehm
2323
fi
@@ -27,4 +27,4 @@ fi
2727
# location of the default FSharp install in order to find the FSharp compiler binaries (see
2828
# fsharpbinding/MonoDevelop.FSharpBinding/Services/CompilerLocationUtils.fs). That's a pretty unfortunate
2929
# way of finding those binaries. And really should be changed.
30-
$EXEC mono$DEBUG$MONO_OPTIONS$MONO_GC_OPTIONS @DIR@/@TOOL@$@
30+
$EXEC mono$DEBUG$MONO_OPTIONS$MONO_GC_OPTIONS @DIR@/@TOOL@"$@"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp