This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| worker_processes 1; # we could enlarge this setting on a multi-core machine | |
| error_log logs/error.log warn; | |
| events { | |
| worker_connections 2048; | |
| } | |
| http { | |
| lua_package_path 'conf/?.lua;;'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/components/Folder.php b/components/Folder.php | |
| index 2a84f32..1e757c4 100644 | |
| --- a/components/Folder.php | |
| +++ b/components/Folder.php | |
| @@ -267,9 +267,13 @@ class Folder extends Ansible { | |
| $currentTmp = sprintf('%s/%s/current-%s.tmp', rtrim($this->getConfig()->release_library, '/'), $project, $project); | |
| // 遇到回滚,则使用回滚的版本version | |
| $linkFrom = Project::getReleaseVersionDir($version); | |
| - $cmd[] = sprintf('ln -sfn %s %s', $linkFrom, $currentTmp); | |
| - $cmd[] = sprintf('chown -h %s %s', $user, $currentTmp); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| brew unlink thrift | |
| brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/16ebe5f1843e6cb54856311ff0f676be53007329/Formula/thrift.rb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Thrift < Formula | |
| desc "Framework for scalable cross-language services development" | |
| homepage "https://thrift.apache.org/" | |
| url "https://www.apache.org/dyn/closer.cgi?path=/thrift/0.10.0/thrift-0.10.0.tar.gz" | |
| sha256 "2289d02de6e8db04cbbabb921aeb62bfe3098c4c83f36eec6c31194301efa10b" | |
| bottle do | |
| cellar :any | |
| sha256 "20b9fd54b8aaf036d5c9c85f53ab084819f1b6bbb392bd266e4f7c7e2dbbc48b" => :high_sierra | |
| sha256 "a0d93b6f61524775ec194daa25a3a8da16f5e858823822847074711c718f1618" => :sierra |
OlderNewer