Browse Source

fixed deploy_key path

Andy Li 9 years ago
parent
commit
5253cd0bfe
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/RunCi.hx

+ 2 - 2
tests/RunCi.hx

@@ -636,9 +636,9 @@ class RunCi {
 			) {
 				//setup deploy_key
 				runCommand("openssl aes-256-cbc -k \"$deploy_key_decrypt\" -in extra/deploy_key.enc -out extra/deploy_key -d");
-				runCommand("chmod 600 deploy_key");
+				runCommand("chmod 600 extra/deploy_key");
 				runCommand("eval `ssh-agent -s`");
-				runCommand("ssh-add deploy_key");
+				runCommand("ssh-add extra/deploy_key");
 
 				runCommand("make", ["-s", "deploy_doc"]);
 			}