croc.passthru.tests: partially revert 77c0a490

`--overwrite` is no longer needed for receiving text

+1 -2
+1 -2
pkgs/tools/networking/croc/test-local-relay.nix
··· 12 ${croc}/bin/croc --relay localhost:11111 send --code correct-horse-battery-staple --text "$MSG" & 13 # wait for things to settle 14 sleep 1 15 - # receive, as of croc 9 --overwrite is required for noninteractive use 16 - MSG2=$(${croc}/bin/croc --overwrite --relay localhost:11111 --yes correct-horse-battery-staple) 17 # compare 18 [ "$MSG" = "$MSG2" ] && touch $out 19 '';
··· 12 ${croc}/bin/croc --relay localhost:11111 send --code correct-horse-battery-staple --text "$MSG" & 13 # wait for things to settle 14 sleep 1 15 + MSG2=$(${croc}/bin/croc --relay localhost:11111 --yes correct-horse-battery-staple) 16 # compare 17 [ "$MSG" = "$MSG2" ] && touch $out 18 '';