summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorJoseph Mearman <joseph@mearman.co.uk>2023-09-20 10:08:30 +0100
committerGitHub <noreply@github.com>2023-09-20 02:08:30 -0700
commit807b016fd6ce505c8c7470e9e3ed018ebde5ceb3 (patch)
tree14fecb06e122c3f209d1945995109bbe3fcdce69 /build.sh
parent5a9819bcfc5c8a472d3df65a797044dbb8449d5d (diff)
downloadsncontinue-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.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index d7e5aeda..c9dd60f6 100644
--- a/build.sh
+++ b/build.sh
@@ -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