We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55acc65 commit cf0eb7fCopy full SHA for cf0eb7f
src/giph
@@ -269,7 +269,7 @@ function get_geometry_from_slop() {
269
slop_command="${slop[*]}"
270
log "slop command: '$slop_command'" 2 true
271
272
- slop_value="$("$slop_command")"
+ slop_value="$($slop_command)"
273
[ "$?" -eq 1 ] && log_error "slop selection got canceled"
274
275
GEOMETRY_STRING="$slop_value"
@@ -471,7 +471,7 @@ function giph() {
471
472
function stop_all_recordings() {
473
for pid in "$(pgrep -f "bash.+giph")"; do
474
- kill -INT -"$pid"
+ kill -INT -$pid
475
done
476
}
477
0 commit comments