Uploaded image for project: 'Qt Installer Framework'
  1. Qt Installer Framework
  2. QTIFW-2270

Undo operation for CopyDirectory fails if forceOverwrite is passed as an argument

    XMLWordPrintable

Details

    • Bug
    • Resolution: Unresolved
    • P3: Somewhat important
    • None
    • 4.1.1
    • General

    Description

      There's an undocumented argument forceOverwrite that we can pass to the
      CopyDirectory operation in order to force an overwrite of files:

        component.addOperation("CopyDirectory", "/Users/me/testdir/", "/Users/me/testdir2/", "forceOverwrite");
      

      However, this makes uninstalls fail:

      [9979] undo operation= "CopyDirectory"
      [9979] undo com.verimatrix.xcode_plugin operation: CopyDirectory
      [9979] 	- arguments: /Users/me/testdir/, /Users/me/testdir2/, forceOverwrite
      [9979] Done
      [9983] installationErrorWithIgnore : Installer Error : Error during uninstallation process:
      Invalid arguments in CopyDirectory: 3 arguments given, exactly 2 arguments expected. Retry|Ignore
      

      If we look at installer-framework/src/libs/installer/copydirectoryoperation.cpp, the performOperation method for the CopyDirectory operation accepts 2 or 3 arguments:

      bool CopyDirectoryOperation::performOperation() 
      {
          if (!checkArgumentCount(2, 3, tr("<source> <target> [\"forceOverwrite\"]")))
              return false;
      }
      

      But the undo operation has the following check which makes the UNDO fail:

          if (!checkArgumentCount(2))
              return false;
      

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            installerteam Installer Team
            jbiku Justinas Bikulcius
            Votes:
            1 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:

              Gerrit Reviews

                There are no open Gerrit changes