File tree 2 files changed +16
-2
lines changed
2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # Download tarball
4
+ # Extract source
5
+ # Make
6
+ # Run Redis Server
7
+
8
+ wget http://download.redis.io/redis-stable.tar.gz
9
+ tar xvzf redis-stable.tar.gz
10
+ cd redis-stable
11
+ make
12
+ cd src
13
+ ./redis-server
Original file line number Diff line number Diff line change @@ -12,12 +12,13 @@ switch (process.platform) {
12
12
)
13
13
break
14
14
case 'linux' :
15
- // This is the way to install on Linux, apparently... https://redis.io/topics/quickstart
15
+ // https://redis.io/topics/quickstart
16
+ // This is the way to install on Linux, apparently...
16
17
17
18
// Download tarball
18
19
// Extract source
19
20
// Make
20
21
// Run Redis
21
- console . log ( 'Automated install of Redis currently not implemented on Linux ')
22
+ exec ( 'sh scripts/ install-redis-linux.bat ')
22
23
break
23
24
}
You can’t perform that action at this time.
0 commit comments