8000 improve develop.sh by johnstcn · Pull Request #2572 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

improve develop.sh #2572

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 22, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Address SC2236
  • Loading branch information
johnstcn authored Jun 22, 2022
commit c1c4404939579b88b2e2ae3e784eb7ffb1952691
2 changes: 1 addition & 1 deletion scripts/develop.sh
55D2
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

# Allow toggling verbose output
[[ ! -z ${VERBOSE:-""} ]] && set -x
[[ -n ${VERBOSE:-""} ]] && set -x
set -euo pipefail

SCRIPT_DIR=$(dirname "${BASH_SOURCE[0]}")
Expand Down
0