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
Following up the discussion on #301: create_ssh_config() as well as __create_and_save_key() methods would simply fail if our ssh configuration directory (which we typically expect to be ~/work/fabric_config/, but it could be elsewhere as well) does not exist.
Following up the discussion on #301:
create_ssh_config()
as well as__create_and_save_key()
methods would simply fail if our ssh configuration directory (which we typically expect to be~/work/fabric_config/
, but it could be elsewhere as well) does not exist.fabrictestbed-extensions/fabrictestbed_extensions/fablib/fablib.py
Lines 798 to 805 in 00a072c
We could instead attempt to create the directory with
os.mkdirs(dir_path)
orpathlib.Path(dir_path).mkdir(parents=True)
.The text was updated successfully, but these errors were encountered: