diff options
| author | Chris Gavin <[email protected]> | 2017-04-25 09:12:26 +0100 |
|---|---|---|
| committer | Chris Gavin <[email protected]> | 2017-04-25 09:18:03 +0100 |
| commit | 4f3ac7ddd7c6e2a35f093b4f12f0f6b5ab0349fe (patch) | |
| tree | f37b082fbaaa1532ea26da8ff2340b8240b643d0 /contrib/macdeploy/macdeployqtplus | |
| parent | Merge #10272: [Tests] Prevent warning: variable 'x' is uninitialized (diff) | |
| download | discoin-4f3ac7ddd7c6e2a35f093b4f12f0f6b5ab0349fe.tar.xz discoin-4f3ac7ddd7c6e2a35f093b4f12f0f6b5ab0349fe.zip | |
Remove unused variable from `macdeployqtplus` script.
Diffstat (limited to 'contrib/macdeploy/macdeployqtplus')
| -rwxr-xr-x | contrib/macdeploy/macdeployqtplus | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/macdeploy/macdeployqtplus b/contrib/macdeploy/macdeployqtplus index 5995f9f43..17214ebe8 100755 --- a/contrib/macdeploy/macdeployqtplus +++ b/contrib/macdeploy/macdeployqtplus @@ -302,7 +302,6 @@ def copyFramework(framework, path, verbose): if os.path.exists(fromContentsDir): toContentsDir = os.path.join(path, framework.destinationVersionContentsDirectory) shutil.copytree(fromContentsDir, toContentsDir, symlinks=True) - contentslinkfrom = os.path.join(path, framework.destinationContentsDirectory) if verbose >= 3: print("Copied Contents:", fromContentsDir) print(" to:", toContentsDir) |