Skip to content

Commit 4d524b6

Browse files
committed
ensure we print the absolute path so secrets don't get lost
1 parent db52db6 commit 4d524b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airbyte_cdk/cli/airbyte_cdk/_secrets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def fetch(
138138
secret_file_path = secrets_dir / f"{filename_base}.json"
139139
secret_file_path.write_text(payload)
140140
secret_file_path.chmod(0o600) # default to owner read/write only
141-
click.echo(f"Secret written to: {secret_file_path}")
141+
click.echo(f"Secret written to: {secret_file_path.absolute()!s}")
142142
secret_count += 1
143143

144144
if secret_count == 0:

0 commit comments

Comments
 (0)