We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b232dea commit 62fbaa0Copy full SHA for 62fbaa0
installer/omnisharp-manager.sh
@@ -63,15 +63,18 @@ else
63
exit 1
64
fi
65
66
-# Check the machine architecture
67
-case "$(uname -m)" in
68
- "x86_64") machine="x64";;
69
- "i368") machine="x86";;
70
- *)
71
- echo "Error: OmniSharp-Roslyn only works on x86 CPU architecture"
72
- exit 1
73
- ;;
74
-esac
+# If not installing in mono mode
+if [ -z "$mono" ]; then
+ # Check the machine architecture
+ case "$(uname -m)" in
+ "x86_64") machine="x64";;
+ "i368") machine="x86";;
+ *)
+ echo "Error: OmniSharp-Roslyn only works on x86 CPU architecture"
+ exit 1
75
+ ;;
76
+ esac
77
+fi
78
79
# Check the operating system
80
case "$(uname -s)" in
0 commit comments