Ray
Ray
Master. In Model/build/RemoteGitBuild.php function cloneBySsh(). ``` $depth = $builder->getConfig('clone_depth'); if (!is_null($depth)) { $cmd .= ' --depth ' . intval($depth) . ' '; } ``` can't get config **clone_depth** When i...
@Adirelle i think this is better solution to download only configuration file git archive --remote=git://remote/project.git HEAD phploy.yml | tar -x
https://github.com/golang/go/issues/40952 describes similar issue, but with comment code blocks. As I understand correctly it is hard to recognise comment code blocks language, however `Example` blocks are always (?) written in...
what's the status of this PR? What's missing?
> I'm waiting for @kyleconroy to review. I'm hoping he can give me a pointer for the failing test. > > > Does this have a path towards supporting multiple...
Hi @TimothyIp To be honest there was not much of a discussion about this new feature. The current formula: ``` int64(99.9999 * 10^(fraction)) ``` The rounding is done by casting...
good point, you're right it would be more sufficient to use type alias instead
Hi @AyoobMH Thanks for the PR! I was just thinking, maybe we can update original methods to accept variadic parameters instead? ``` func (m *Money) Add(om ...*Money) (*Money, error) ```...
> Hi @Rhymond, thanks for your efforts. > > I think updating original methods to have variadic parameters is even better, it wouldn't introduce any redundant code. Are you thinking...
Hey @trobert2! You can always add new custom currency using `AddCurrency` method. It accepts: ``` Fraction int Grapheme string Template string Decimal string Thousand string ``` to make your custom...