Skip to content

Commit 92f10d7

Browse files
committed
feat: add linux support to install.sh - beware! Not yet tested.
1 parent 7b48fbe commit 92f10d7

File tree

1 file changed

+22
-4
lines changed

1 file changed

+22
-4
lines changed

install.sh

+22-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,28 @@
11
#!/bin/bash
2+
#
3+
# Usage:
4+
# $ curl -fsSL https://raw.githubusercontent.com/pact-foundation/pact-ruby-standalone/master/install.sh | bash
5+
# or
6+
# $ wget -q https://raw.githubusercontent.com/pact-foundation/pact-ruby-standalone/master/install.sh -O- | bash
7+
#
8+
29
set -e
3-
os="`uname`"
4-
case $os in
10+
uname_output=$(uname)
11+
case $uname_output in
512
'Linux')
6-
# TODO detect bits
7-
os='linux-x86_64'
13+
linux_uname_output=$(uname -i)
14+
case $linux_uname_output in
15+
'x86_64')
16+
os='linux-x86_64'
17+
;;
18+
'i686')
19+
os='linux-x86'
20+
;;
21+
*)
22+
echo "Sorry, you'll need to install the pact-ruby-standalone manually."
23+
exit 1
24+
;;
25+
esac
826
;;
927
'Darwin')
1028
os='osx'

0 commit comments

Comments
 (0)