Skip to content

Commit 807b016

Browse files
authored
The shebang must be on the first line. Delete blanks and move comments. See SC1128. (continuedev#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
1 parent 5a9819b commit 807b016

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ rm -rf continuedev/.venv
88

99
# 2. Create a new virtual environment and activate it
1010
python3 -m venv env
11-
source env/bin/activate
11+
. env/bin/activate
1212

1313
# 3. Install the required packages
1414
pip install -r continuedev/requirements.txt

install-dependencies.sh

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
#!/bin/bash
32
# This is used in a task in .vscode/tasks.json
43
# Start developing with:

0 commit comments

Comments
 (0)