diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-05-31 20:55:52 -0400 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-05-31 20:55:52 -0400 |
commit | 3349f9726606e53e181e5c499106e78f4538ed53 (patch) | |
tree | efcdc2a97f8a8bbaf19e4379d1ac582824d758f1 /extension/scripts | |
parent | a4e9e7764ee42a743dbfbaedb520cc70daa23ec4 (diff) | |
download | sncontinue-3349f9726606e53e181e5c499106e78f4538ed53.tar.gz sncontinue-3349f9726606e53e181e5c499106e78f4538ed53.tar.bz2 sncontinue-3349f9726606e53e181e5c499106e78f4538ed53.zip |
small script corrections
Diffstat (limited to 'extension/scripts')
-rw-r--r-- | extension/scripts/install_from_source.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/scripts/install_from_source.py b/extension/scripts/install_from_source.py index 28f382b0..bbb86797 100644 --- a/extension/scripts/install_from_source.py +++ b/extension/scripts/install_from_source.py @@ -29,7 +29,7 @@ def main(): print("Poetry is required for Continue but is not installed on your machine. See https://python-poetry.org/docs/#installation to download the latest version, then try again.") return - resp = run("cd ../../continuedev; poetry run typegen") + resp = run("cd ../../continuedev; poetry install; poetry run typegen") resp = run( "cd ..; npm i; cd react-app; npm i; cd ..; npm run full-package") |