Skip to content

Commit b35a136

Browse files
committed
Fixed deploy script
1 parent fcff248 commit b35a136

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deploy

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ run() {
104104
local url="`config_get user`@`config_get host`"
105105
local key=`config_get key`
106106
if test -n "$key"; then
107-
local shell="ssh -i $key $url"
107+
local shell="ssh -A -i $key $url"
108108
else
109-
local shell="ssh $url"
109+
local shell="ssh -A $url"
110110
fi
111111
echo $shell "\"$@\"" >> $LOG
112112
$shell $@

0 commit comments

Comments
 (0)