Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/ssh/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ssh 通过Codeship部署到Digital Ocean时,会出现v8-compile-cache-0目录_Ssh_Digital Ocean_Codeship - Fatal编程技术网

Ssh 通过Codeship部署到Digital Ocean时,会出现v8-compile-cache-0目录

Ssh 通过Codeship部署到Digital Ocean时,会出现v8-compile-cache-0目录,ssh,digital-ocean,codeship,Ssh,Digital Ocean,Codeship,我正在部署到via。下面的示例中,Codeship在Droplet中运行以下自定义脚本: ssh root@<MY_IP> 'cd /var/www/example/backend/; git checkout master; git pull; npm install;' ssh root@'cd/var/www/example/backend/;git签出主机;git-pull;npm安装 一切正常。但是,当我从本地机器SSH到我的drop时,这些更改不会反映在git rep

我正在部署到via。下面的示例中,Codeship在Droplet中运行以下自定义脚本:

ssh root@<MY_IP> 'cd /var/www/example/backend/; git checkout master; git pull; npm install;'
ssh root@'cd/var/www/example/backend/;git签出主机;git-pull;npm安装
一切正常。但是,当我从本地机器SSH到我的drop时,这些更改不会反映在git repo中。相反,有一个名为
v8-compile-cache-0
的目录。阅读对的描述并不能加深我的理解

这里发生了什么,我如何使我的拉动变化正确地反映在液滴中

一切正常

使用分号将命令串在一起可能会使返回非零退出代码的命令的问题保持沉默


我会先尝试使用双符号重新运行这个构建,然后再联系support@codeship.com如果更改仍然没有反映在您的液滴中。

我这样做了,并且收到了一个新的错误,表明我尝试连接到回购的密码不正确。我从本地机器登录到Droplet,并使用
git config credential.helper store
保存密码。此外,我更新了我的脚本以使用
git-pull-origin
,而不仅仅是
git-pull
。这些变化一起导致了我想要的结果。既然你建议使用双安培让我找到了解决办法,我就接受这个答案。