【capistrano】更新したら、Noticeが出るようになった。

capistrano をアップデートして実行したら、下記が出るようになった


 [Deprecation Notice] `set :scm, :git` is deprecated.

To ensure your project is compatible with future versions of Capistrano,

remove the :scm setting and instead add these lines to your Capfile after

`require "capistrano/deploy"`:


    require "capistrano/scm/git"

    install_plugin Capistrano::SCM::Git


require "capistrano/deploy の下に、

    require "capistrano/scm/git"

    install_plugin Capistrano::SCM::Git


を記載して、

set :scm, :git  を 削除したらでなくなった。

コメント

このブログの人気の投稿

【iOS】SwiftでCGAffineTransformから角度・ラジアン・度数・スケールを計算する方法

【Android】WebViewのズームボタン(ピンチイン・ピンチアウト)を非表示にする方法

【iOS】UILabelでヒラギノフォントの上下が切れる問題と対処法