Skip to content

Commit

Permalink
Only import required func/array from sys.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
tjone270 authored and uglide committed Sep 30, 2019
1 parent 6847935 commit 5c916ec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
8 changes: 4 additions & 4 deletions build/utils/set_version.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from __future__ import print_function
import sys
from sys import argv, exit


if len(sys.argv) != 2:
if len(argv) != 2:
print("Usage: %version%")
quit()
exit(1)

print(
"""
#ifndef RDM_VERSION
#define RDM_VERSION "{0}"
#endif // !RDM_VERSION
""".format(sys.argv[1])
""".format(argv[1])
)
5 changes: 1 addition & 4 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@

### Get source

1. Install git:
```
sudo apt install git
```
1. Install git using the instructions here: https://git-scm.com/download

2. Get the source code:
```
Expand Down
2 changes: 1 addition & 1 deletion docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Follow instructions from [this blog post](https://userify.com/blog/howto-connect
### How to connect to Redis ElastiCache with In-Transit Encryption through EC2
#### Using RedisDesktopManager >=0.9.9

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)
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)


#### Using RedisDesktopManager <0.9.9
Expand Down

0 comments on commit 5c916ec

Please sign in to comment.