Skip to content

Commit

Permalink
Do not set -e in dev_run_loop since it would quit if individual run q…
Browse files Browse the repository at this point in the history
…uits
  • Loading branch information
ReproStim virtual user committed Sep 5, 2023
1 parent 901d1f8 commit 52a7bb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Events/dev_run_loop
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/bash

set -eu
set -u
cd $(dirname $0)

source venvs/dev3/bin/activate
source venvs/dev3/bin/activate || { echo "Failed to start venv"; exit 1; }

while true; do
ts=$(date --iso-8601=seconds)
Expand Down

0 comments on commit 52a7bb2

Please sign in to comment.