Skip to content

Commit c85b062

Browse files
author
Matthew Fisher
committed
fix(client): remove fetch call from apps:create
If you have a violating key in your known_hosts file, it will cause you to fail adding the git remote, even though the app is already created on the controller's side. Validating that the server's key is correct should happen at git push to match Heroku.
1 parent 18cf1a9 commit c85b062

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/deis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ def apps_create(self, args):
490490
else:
491491
try:
492492
subprocess.check_call(
493-
['git', 'remote', 'add', '-f', 'deis', git_remote],
493+
['git', 'remote', 'add', 'deis', git_remote],
494494
stdout=subprocess.PIPE)
495495
self._logger.info('Git remote deis added')
496496
except subprocess.CalledProcessError:

0 commit comments

Comments
 (0)