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