We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 333c281 commit ee42183Copy full SHA for ee42183
2 files changed
include/linuxdeploy/core/appdir.h
@@ -51,6 +51,9 @@ namespace linuxdeploy {
51
// deploy icon
52
bool deployIcon(const boost::filesystem::path& path);
53
54
+ // deploy arbitrary file
55
+ void deployFile(const boost::filesystem::path& from, const boost::filesystem::path& to);
56
+
57
// execute deferred copy operations
58
bool executeDeferredOperations();
59
src/core/appdir.cpp
@@ -635,6 +635,10 @@ namespace linuxdeploy {
635
return true;
636
}
637
638
+ void AppDir::deployFile(const boost::filesystem::path& from, const boost::filesystem::path& to) {
639
+ return d->deployFile(from, to);
640
+ }
641
642
void AppDir::setAppName(const std::string& appName) {
643
d->appName = appName;
644
0 commit comments