Skip to content

Commit c08933b

Browse files
committed
Add warning to shell build scripts
1 parent f27f8e1 commit c08933b

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

modules/test/scripts/init-couchbase/init-buckets.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
#!/bin/bash
22

3+
# ===============================================
4+
# NOTE: Any changes made to this file will not be
5+
# automatically reflected in `make cb-start` as
6+
# the Makefile does not use the mounted version
7+
# of this file in the Docker image. You will need
8+
# to rebuild the image via `make cb-build` before
9+
# running `make cb-start`.
10+
# ===============================================
11+
312
# exit immediately if a command fails or if there are unset vars
413
set -euo pipefail
514

modules/test/scripts/init-couchbase/init.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
#!/bin/bash
22

3+
# ===============================================
4+
# NOTE: Any changes made to this file will not be
5+
# automatically reflected in `make cb-start` as
6+
# the Makefile does not use the mounted version
7+
# of this file in the Docker image. You will need
8+
# to rebuild the image via `make cb-build` before
9+
# running `make cb-start`.
10+
# ===============================================
11+
312
CB_USER="${CB_USER:-Administrator}"
413
CB_PSWD="${CB_PSWD:-password}"
514
CB_HOST="${CB_HOST:-127.0.0.1}"

0 commit comments

Comments
 (0)