diff options
author | Joseph Mearman <joseph@mearman.co.uk> | 2023-09-20 10:08:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-20 02:08:30 -0700 |
commit | 807b016fd6ce505c8c7470e9e3ed018ebde5ceb3 (patch) | |
tree | 14fecb06e122c3f209d1945995109bbe3fcdce69 /build.sh | |
parent | 5a9819bcfc5c8a472d3df65a797044dbb8449d5d (diff) | |
download | sncontinue-807b016fd6ce505c8c7470e9e3ed018ebde5ceb3.tar.gz sncontinue-807b016fd6ce505c8c7470e9e3ed018ebde5ceb3.tar.bz2 sncontinue-807b016fd6ce505c8c7470e9e3ed018ebde5ceb3.zip |
The shebang must be on the first line. Delete blanks and move comments. See SC1128. (#495)
* The shebang must be on the first line. Delete blanks and move comments. See SC1128.
https://github.com/koalaman/shellcheck/wiki/SC1128
* In POSIX sh, 'source' in place of '.' is undefined.
https://github.com/koalaman/shellcheck/wiki/SC2039
Diffstat (limited to 'build.sh')
-rw-r--r-- | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ rm -rf continuedev/.venv # 2. Create a new virtual environment and activate it python3 -m venv env -source env/bin/activate +. env/bin/activate # 3. Install the required packages pip install -r continuedev/requirements.txt |