We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cff995 commit 47429bcCopy full SHA for 47429bc
main.py
@@ -20,11 +20,9 @@ def main():
20
try:
21
files = []
22
for p in Path("./").iterdir():
23
- #files.append(p.name)
24
- log_message(f"{p.name}=OMG")
25
-
26
- #all_files = ",".join(files)
27
- #log_message(f"FILES_LISTING_1={all_files}")
+ files.append(p.name)
+ all_files = ",".join(files)
+ log_message(f"FILES_LISTING_1='{all_files}'")
28
29
log_message("MY_VAR1=foo")
30
log_message("MY_VAR2=bar")
0 commit comments