-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Typo in arguments in readme - --backup is not set as the correct one
- Loading branch information
1 parent
ae4e1fa
commit 1912f2f
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -113,7 +113,7 @@ To get the sample code, we can clone this GitHub repository or another and open | |
|
||
Here’s how the argument list will look like: | ||
|
||
`.\AzureDevOpsBackup.exe --token "our-auth-token" --org "our-org" --outdir "C:\backup\out-directory" --server "smtp.server.com" --port "25" --from "[email protected]" --to "[email protected]" --unzip --cleanup --daystokeepbackup 50 --priority high` | ||
`.\AzureDevOpsBackup.exe --token "our-auth-token" --org "our-org" --backup "C:\backup\out-directory" --server "smtp.server.com" --port "25" --from "[email protected]" --to "[email protected]" --unzip --cleanup --daystokeepbackup 50 --priority high` | ||
|
||
This solution uses two external libraries we need to reference: RestSharp to facilitate the API calls and Newtonsoft JSON to deserialize the API responses into objects. | ||
|
||
|
@@ -154,7 +154,7 @@ Note we are also saving the original JSON item list we got from the repository c | |
- --info or /about: Show the about menu | ||
|
||
#### Mandatory arguments: | ||
Mandatory arguments is: **`--token, --org, --outdir, --server, --port, --from and --to`** | ||
Mandatory arguments is: **`--token, --org, --backup, --server, --port, --from and --to`** | ||
|
||
#### **A bit more information about some arguments:** | ||
|
||
|