We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fefb0ae commit 5e55a58Copy full SHA for 5e55a58
deploy.ini
@@ -4,6 +4,8 @@
4
5
skip = false
6
user = example
7
+; remove this options and enter a password in the terminal
8
+pass = password
9
host = example.com
10
port = 21
11
path = /path/to/installation
git-deploy
@@ -625,7 +625,9 @@ class Config {
625
'upload_untracked' => array()
626
), $options);
627
628
- $options['pass'] = self::promptPassword();
+ if (!isset($options['pass'])) {
629
+ $options['pass'] = self::promptPassword();
630
+ }
631
632
if ($options['skip']) {
633
continue;
0 commit comments