Browse Source

Merge branch 'v2' of github.com:VCVRack/Rack-private into v2

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
219bbaf137
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      LICENSE.md
  2. +1
    -1
      src/system.cpp

+ 1
- 1
LICENSE.md View File

@@ -19,7 +19,7 @@ If you wish to release a proprietary commercial plugin, email support@vcvrack.co

---

Licenses of **third-party libraries** are listed in [LICENSE-dist](LICENSE-dist.md) ([HTML](LICENSE-dist.html)).
Licenses of **third-party libraries** are listed in [LICENSE-dist](https://github.com/VCVRack/Rack/blob/v2/LICENSE-dist.md) ([HTML](LICENSE-dist.html)).

The **Component Library graphics** for Rack are copyright © 2016-2021 [VCV](https://vcvrack.com/) and licensed under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/).
Non-commercial use is allowed with appropriate credit and indication of the original license.


+ 1
- 1
src/system.cpp View File

@@ -521,7 +521,7 @@ static void unarchiveToDirectory(const std::string& archivePath, const std::vect

// Convert relative pathname to absolute based on dirPath
std::string entryPath = archive_entry_pathname(entry);
DEBUG("entryPath: %s", entryPath.c_str());
// DEBUG("entryPath: %s", entryPath.c_str());
if (!fs::u8path(entryPath).is_relative())
throw Exception("Unarchiver does not support absolute tar paths: %s", entryPath.c_str());
entryPath = (fs::u8path(dirPath) / fs::u8path(entryPath)).generic_u8string();


Loading…
Cancel
Save