Skip to content

Commit 2a354e9

Browse files
axonasifsagor999
authored andcommitted
disable job control
1 parent 6768953 commit 2a354e9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

chunks/tool-postgresql/postgresql-hook.bash

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env bash
22
# Auto-start PostgreSQL server
3+
set +m
34
(
45
if mkdir /tmp/.pgsql_lock 2>/dev/null; then {
56
target="${PGWORKSPACE}"
@@ -26,3 +27,4 @@
2627
}; fi
2728
) &
2829
disown
30+
set -m

tests/lang-python.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
- status == 0
6161

6262
- desc: "VSCode Python settings are correctly applied"
63-
entrypoint: [bash, -c]
64-
command: [export GITPOD_REPO_ROOT=/workspace/test; for sj in "$HOME/.vscode-server/data/Machine/settings.json" "/workspace/.vscode-remote/data/Machine/settings.json"; do mkdir -p $(dirname "$sj") "$GITPOD_REPO_ROOT" && touch "$sj" && bash -cli 'exit' && if ! grep -q 'python' "$sj"; then exit 1; fi; done]
63+
entrypoint: [sh, -c]
64+
command: [export GITPOD_REPO_ROOT=/workspace/test; for sj in "$HOME/.vscode-server/data/Machine/settings.json" "/workspace/.vscode-remote/data/Machine/settings.json"; do mkdir -p $(dirname "$sj") "$GITPOD_REPO_ROOT" && touch "$sj" && bash -lic 'true' && if ! grep -q 'python' "$sj"; then exit 1; fi; done]
6565
assert:
6666
- status == 0

0 commit comments

Comments
 (0)