capistrano deploys new code successfully, but the code on the server remains old











up vote
0
down vote

favorite












I'm tryng to deploy a new branch to my staging server. I'm doing this:



cap staging deploy BRANCH=new_branch


Even though, all has been deployed without any error, the code is /var/app/current/app/controllers/my_controller.rb on the server remains old. It's not the same as the code I have locally in the branch new_branch.



I've already tried several times and still the result is the same.



Gemfile:



group :development do
gem 'capistrano'
gem 'capistrano-ssh-doctor'
gem 'capistrano-bundler', '~> 1.1.2'
gem 'capistrano-rails', '~> 1.1.1'
gem 'capistrano-passenger'
gem 'capistrano-rake', require: false
gem 'capistrano-rvm'
end


Gemfile.lock:



  capistrano (3.11.0)
airbrussh (>= 1.0.0)
i18n
rake (>= 10.0.0)
sshkit (>= 1.9.0)
capistrano-bundler (1.1.4)
capistrano (~> 3.1)
sshkit (~> 1.2)
capistrano-passenger (0.2.0)
capistrano (~> 3.0)
capistrano-rails (1.1.8)
capistrano (~> 3.1)
capistrano-bundler (~> 1.1)
capistrano-rake (0.2.0)
capistrano (>= 3.0)
capistrano-rvm (0.1.2)
capistrano (~> 3.0)
sshkit (~> 1.2)
capistrano-ssh-doctor (1.0.0)
capistrano (>= 3.1)









share|improve this question




























    up vote
    0
    down vote

    favorite












    I'm tryng to deploy a new branch to my staging server. I'm doing this:



    cap staging deploy BRANCH=new_branch


    Even though, all has been deployed without any error, the code is /var/app/current/app/controllers/my_controller.rb on the server remains old. It's not the same as the code I have locally in the branch new_branch.



    I've already tried several times and still the result is the same.



    Gemfile:



    group :development do
    gem 'capistrano'
    gem 'capistrano-ssh-doctor'
    gem 'capistrano-bundler', '~> 1.1.2'
    gem 'capistrano-rails', '~> 1.1.1'
    gem 'capistrano-passenger'
    gem 'capistrano-rake', require: false
    gem 'capistrano-rvm'
    end


    Gemfile.lock:



      capistrano (3.11.0)
    airbrussh (>= 1.0.0)
    i18n
    rake (>= 10.0.0)
    sshkit (>= 1.9.0)
    capistrano-bundler (1.1.4)
    capistrano (~> 3.1)
    sshkit (~> 1.2)
    capistrano-passenger (0.2.0)
    capistrano (~> 3.0)
    capistrano-rails (1.1.8)
    capistrano (~> 3.1)
    capistrano-bundler (~> 1.1)
    capistrano-rake (0.2.0)
    capistrano (>= 3.0)
    capistrano-rvm (0.1.2)
    capistrano (~> 3.0)
    sshkit (~> 1.2)
    capistrano-ssh-doctor (1.0.0)
    capistrano (>= 3.1)









    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm tryng to deploy a new branch to my staging server. I'm doing this:



      cap staging deploy BRANCH=new_branch


      Even though, all has been deployed without any error, the code is /var/app/current/app/controllers/my_controller.rb on the server remains old. It's not the same as the code I have locally in the branch new_branch.



      I've already tried several times and still the result is the same.



      Gemfile:



      group :development do
      gem 'capistrano'
      gem 'capistrano-ssh-doctor'
      gem 'capistrano-bundler', '~> 1.1.2'
      gem 'capistrano-rails', '~> 1.1.1'
      gem 'capistrano-passenger'
      gem 'capistrano-rake', require: false
      gem 'capistrano-rvm'
      end


      Gemfile.lock:



        capistrano (3.11.0)
      airbrussh (>= 1.0.0)
      i18n
      rake (>= 10.0.0)
      sshkit (>= 1.9.0)
      capistrano-bundler (1.1.4)
      capistrano (~> 3.1)
      sshkit (~> 1.2)
      capistrano-passenger (0.2.0)
      capistrano (~> 3.0)
      capistrano-rails (1.1.8)
      capistrano (~> 3.1)
      capistrano-bundler (~> 1.1)
      capistrano-rake (0.2.0)
      capistrano (>= 3.0)
      capistrano-rvm (0.1.2)
      capistrano (~> 3.0)
      sshkit (~> 1.2)
      capistrano-ssh-doctor (1.0.0)
      capistrano (>= 3.1)









      share|improve this question















      I'm tryng to deploy a new branch to my staging server. I'm doing this:



      cap staging deploy BRANCH=new_branch


      Even though, all has been deployed without any error, the code is /var/app/current/app/controllers/my_controller.rb on the server remains old. It's not the same as the code I have locally in the branch new_branch.



      I've already tried several times and still the result is the same.



      Gemfile:



      group :development do
      gem 'capistrano'
      gem 'capistrano-ssh-doctor'
      gem 'capistrano-bundler', '~> 1.1.2'
      gem 'capistrano-rails', '~> 1.1.1'
      gem 'capistrano-passenger'
      gem 'capistrano-rake', require: false
      gem 'capistrano-rvm'
      end


      Gemfile.lock:



        capistrano (3.11.0)
      airbrussh (>= 1.0.0)
      i18n
      rake (>= 10.0.0)
      sshkit (>= 1.9.0)
      capistrano-bundler (1.1.4)
      capistrano (~> 3.1)
      sshkit (~> 1.2)
      capistrano-passenger (0.2.0)
      capistrano (~> 3.0)
      capistrano-rails (1.1.8)
      capistrano (~> 3.1)
      capistrano-bundler (~> 1.1)
      capistrano-rake (0.2.0)
      capistrano (>= 3.0)
      capistrano-rvm (0.1.2)
      capistrano (~> 3.0)
      sshkit (~> 1.2)
      capistrano-ssh-doctor (1.0.0)
      capistrano (>= 3.1)






      ruby-on-rails ruby linux capistrano capistrano3






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 7 at 22:03

























      asked Nov 7 at 21:53









      Joaadani

      93




      93





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53198417%2fcapistrano-deploys-new-code-successfully-but-the-code-on-the-server-remains-old%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53198417%2fcapistrano-deploys-new-code-successfully-but-the-code-on-the-server-remains-old%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud

          Zucchini