Skip to content

Commit 4f142a3

Browse files
committed
feat/ENG-25425.add-upload-endpoints
Fix review
1 parent 9ec882e commit 4f142a3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ Python 3.9+
4343
If the python package is hosted on a repository, you can install directly using:
4444

4545
```sh
46-
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
46+
pip install git+https://github.com/lilt/lilt-python.git
4747
```
48-
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
48+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/lilt/lilt-python.git`)
4949

5050
Then import the package:
5151
```python

git_push.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ if [ "$git_host" = "" ]; then
1414
fi
1515

1616
if [ "$git_user_id" = "" ]; then
17-
git_user_id="GIT_USER_ID"
17+
git_user_id="lilt"
1818
echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id"
1919
fi
2020

2121
if [ "$git_repo_id" = "" ]; then
22-
git_repo_id="GIT_REPO_ID"
22+
git_repo_id="lilt-python"
2323
echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id"
2424
fi
2525

0 commit comments

Comments
 (0)