Skip to content

Commit 9bed4e3

Browse files
committed
fix: Improve 'operating respecting bpm.toml' message
1 parent f1b8e76 commit 9bed4e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/lib/util/util.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ util.setup_mode() {
270270
local project_root_dir=
271271
if project_root_dir="$(util.get_project_root_dir)"; then
272272
# Output to standard error because some subcommands may be scriptable (ex. list)
273-
log.info "Operating in local directory" >&2
273+
log.info "Operating in context of local bpm.toml" >&2
274274

275275
BPM_ROOT="$project_root_dir"
276276
BPM_PREFIX="$project_root_dir/bpm_packages"

tests/mode-global.bats

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ load 'util/init.sh'
77

88
run bpm echo "PWD"
99
assert_success
10-
assert_output -p "Operating in local directory"
10+
assert_output -p "Operating in context of local bpm.toml"
1111
}
1212

1313
# We only test two of all commands

0 commit comments

Comments
 (0)