From 807b016fd6ce505c8c7470e9e3ed018ebde5ceb3 Mon Sep 17 00:00:00 2001 From: Joseph Mearman Date: Wed, 20 Sep 2023 10:08:30 +0100 Subject: 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 --- build.sh | 2 +- install-dependencies.sh | 1 - 2 files changed, 1 insertion(+), 2 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 diff --git a/install-dependencies.sh b/install-dependencies.sh index b6060a98..ba350dea 100755 --- a/install-dependencies.sh +++ b/install-dependencies.sh @@ -1,4 +1,3 @@ - #!/bin/bash # This is used in a task in .vscode/tasks.json # Start developing with: -- cgit v1.2.3-70-g09d2