Skip to content

Commit bf6b107

Browse files
committed
Fix incorrect quoting in conductor.sh that broke setenv
1 parent 710ebbc commit bf6b107

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ssh-helpers/conductor.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ iterate() {
454454

455455
log read line "$line"
456456
log decodes to: $(printf "%s" "$line" | base64_decode)
457-
handle_command $(printf "%s" "$line" | base64_decode)
457+
handle_command "$(printf "%s" "$line" | base64_decode)"
458458
}
459459

460460
drain_stdin() {

0 commit comments

Comments
 (0)