Skip to content

Commit 5c916ec

Browse files
tjone270uglide
authored andcommitted
Only import required func/array from sys.
Remove distro-specific package manager command Update install.md Correct spelling and re-word x86 not supported message. Only import required func/array from sys. Correct formatting, grammar and punctuation. Update install.md
1 parent 6847935 commit 5c916ec

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

build/utils/set_version.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
from __future__ import print_function
2-
import sys
2+
from sys import argv, exit
33

44

5-
if len(sys.argv) != 2:
5+
if len(argv) != 2:
66
print("Usage: %version%")
7-
quit()
7+
exit(1)
88

99
print(
1010
"""
1111
#ifndef RDM_VERSION
1212
#define RDM_VERSION "{0}"
1313
#endif // !RDM_VERSION
14-
""".format(sys.argv[1])
14+
""".format(argv[1])
1515
)

docs/install.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,7 @@
2727

2828
### Get source
2929

30-
1. Install git:
31-
```
32-
sudo apt install git
33-
```
30+
1. Install git using the instructions here: https://git-scm.com/download
3431

3532
2. Get the source code:
3633
```

docs/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Follow instructions from [this blog post](https://userify.com/blog/howto-connect
6060
### How to connect to Redis ElastiCache with In-Transit Encryption through EC2
6161
#### Using RedisDesktopManager >=0.9.9
6262

63-
Click on "Enable TLS-over-SSH" in the SSH connection settings and follow instructions from section [How to connect to Redis ElastiCache through EC2](#how-to-connect-to-redis-elasticache-through-ec2)
63+
Click on "Enable TLS-over-SSH" in the the SSH connection settings and follow instructions from section [How to connect to Redis ElastiCache through EC2](#how-to-connect-to-redis-elasticache-through-ec2)
6464

6565

6666
#### Using RedisDesktopManager <0.9.9

0 commit comments

Comments
 (0)