Skip to content

Commit e99b463

Browse files
committed
Resolve #9: merge branch 'miku-bsd-sed-in-flux'
2 parents 5bea10c + 2320dfd commit e99b463

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/main/scripts/flux.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,14 @@ fi
8181
# a variable definition:
8282
vars_to_script=$( cat <<'EOF'
8383
s/^[^=]*$//g ; # is this not a variable definition?
84-
t quit ; # then jump to quit
84+
# then jump to quit
85+
t quit
8586
s/\\/\\\\/g ; # otherwise escape backslashes,
8687
s/!/\\!/g ; # escape exclamation marks,
8788
s/='(.*)'$/=\1/ ; # remove quotes,
8889
s/^([^=]+)=(.*)$/s!\\$\1!\2!g ; /g ; # convert to sed regexp command
89-
b ; # and continue with next line
90+
# and continue with next line
91+
b
9092
: quit
9193
q
9294
EOF

0 commit comments

Comments
 (0)