You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This GNU test checks whether mv -n works as expected, and it was failing for a number of reasons.
reason 1:
touch a b
mv -vin a b
In GNU's implementation, this would fail silently without giving any error, but uu-mv would exit with an error saying: mv: not replacing 'b'
reason 2
mv -b --update=none a b
In GNU's implementation, this would fail with an error saying mv: cannot combine --backup with --exchange, -n, or --update=none-fail, but in uu-mv's case, it would fail silently.
The text was updated successfully, but these errors were encountered:
This GNU test checks whether mv -n works as expected, and it was failing for a number of reasons.
reason 1:
In GNU's implementation, this would fail silently without giving any error, but uu-mv would exit with an error saying:
mv: not replacing 'b'
reason 2
In GNU's implementation, this would fail with an error saying
mv: cannot combine --backup with --exchange, -n, or --update=none-fail
, but in uu-mv's case, it would fail silently.The text was updated successfully, but these errors were encountered: