📝 Update installation instructions, fix format
This commit is contained in:
parent
f48472b361
commit
005ebc3b2d
1 changed files with 11 additions and 7 deletions
18
README.md
18
README.md
|
@ -1,16 +1,20 @@
|
||||||
|
# ssn-tools
|
||||||
|
|
||||||
This repository contains command line tools for handling patches. It uses the functions exposed by the [ssn](/swtor/ssn) library and makes them available for use on the shell.
|
This repository contains command line tools for handling patches. It uses the functions exposed by the [ssn](/swtor/ssn) library and makes them available for use on the shell.
|
||||||
|
|
||||||
# Installation
|
## Installation
|
||||||
|
|
||||||
For this tool to work, the TypeScript compiler must be globally installed:
|
Run the following commands in your Linux shell:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
# Install TypeScript globally
|
||||||
sudo npm install -g typescript
|
sudo npm install -g typescript
|
||||||
```
|
|
||||||
|
|
||||||
Install dependencies and transpile the TypeScript files to JavaScript by running:
|
# Download repository
|
||||||
|
git clone https://git.jedipedia.net/swtor/ssn-tools.git
|
||||||
|
cd ssn-tools
|
||||||
|
|
||||||
```bash
|
# Install dependencies and transpile TypeScript files to JavaScript
|
||||||
npm install && npm start
|
npm install && npm start
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -22,7 +26,7 @@ alias swtor_install='node /path/to/installation/ssn-tools/dist/installPatch.js'
|
||||||
complete -W 'assets_swtor_de_de assets_swtor_en_us assets_swtor_fr_fr assets_swtor_main assets_swtor_test_de_de assets_swtor_test_en_us assets_swtor_test_fr_fr assets_swtor_test_main eualas movies_de_de movies_en_us movies_fr_fr patcher2014 patcher2017 retailclient_liveqatest retailclient_swtor retailclient_publictest' 'swtor_install'
|
complete -W 'assets_swtor_de_de assets_swtor_en_us assets_swtor_fr_fr assets_swtor_main assets_swtor_test_de_de assets_swtor_test_en_us assets_swtor_test_fr_fr assets_swtor_test_main eualas movies_de_de movies_en_us movies_fr_fr patcher2014 patcher2017 retailclient_liveqatest retailclient_swtor retailclient_publictest' 'swtor_install'
|
||||||
```
|
```
|
||||||
|
|
||||||
# Usage
|
## Usage
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
dist/getManifest.js --product assets_swtor_main
|
dist/getManifest.js --product assets_swtor_main
|
||||||
|
@ -32,7 +36,7 @@ dist/installPatch.js assets_swtor_main 126 127
|
||||||
swtor_install assets_swtor_main 126 127
|
swtor_install assets_swtor_main 126 127
|
||||||
```
|
```
|
||||||
|
|
||||||
# License
|
## License
|
||||||
|
|
||||||
Copyright (C) 2018 Jedipedia.net
|
Copyright (C) 2018 Jedipedia.net
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue