用户/ bin / grav时缺少.dependencies

时间:2016-09-25 06:52:18

标签: grav

我正在尝试按照learn.getgrav.org文档在Heroku上安装Grav。

我已经成功部署了Web应用程序,但它告诉我bin / grav安装。

我这样做,它给了我以下输出:

if(context!=null){ inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); }else{ //Get the context from Application class if you have already. Or Create Application class which could give global application context context = YourApplication.getContext(); // getContext would be user-defined method in your application class inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); }

我不知道该做什么,因为每次我安装Grav时都会发生这种情况。

希望这会得到解决。

1 个答案:

答案 0 :(得分:1)

遗憾的是,复制文件时这个问题太常见了:(

隐藏(虚线)文件并不总是被复制。

.dependencies
.htaccss

在您最初提取文件的文件夹中使用ls -l -a Dowloads / grav我可以看到未复制的文件来修复它

cp .dependencies .htaccss /var/www/grav/

当我每次在我的服务器上安装GRAV时,我总是将Zip文件复制到服务器,解压缩到位,然后删除zip文件 - 使用这种方法我从未遇到过安装GRAV的问题

HTH Rich