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
{{ message }}
This repository was archived by the owner on Mar 2, 2020. It is now read-only.
See codeception-module-drupal-user-registry/src/Drupal/UserRegistry/DrushTestUserManager.php
escapeshellarg($user->pass), where $user->pass is "abc!!!" will result in "abc ".
This, I think, is because the Windows version of escapeshellarg wraps the arg in double quotes. Manually executing the drush command with double quotes also fails (drush upwd name --password="abc!!!") but works with single quotes (drush upwd name --password='abc!!!').
So, I think some alternative method of escaping the password is needed. Windows does normally want the double quotes, so this is an exception to the rule.