diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-04-07 18:16:02 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-04-13 00:06:31 +0200 |
commit | 0220fe4f9d7f07fa137a11597b3465c76cfbcae3 (patch) | |
tree | e803758112d4dec1ed56929e517e88595616b3e7 /depends/util/include | |
parent | 58840ac10cc7aac866d61cbcece3c3b9be1af8b4 (diff) | |
download | PrismLauncher-0220fe4f9d7f07fa137a11597b3465c76cfbcae3.tar.gz PrismLauncher-0220fe4f9d7f07fa137a11597b3465c76cfbcae3.tar.bz2 PrismLauncher-0220fe4f9d7f07fa137a11597b3465c76cfbcae3.zip |
GH-228 do not follow symlinks during instance copy on unix
Windows will need a more complex solution.
Diffstat (limited to 'depends/util/include')
-rw-r--r-- | depends/util/include/pathutils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/depends/util/include/pathutils.h b/depends/util/include/pathutils.h index 2cc65db5..a506280e 100644 --- a/depends/util/include/pathutils.h +++ b/depends/util/include/pathutils.h @@ -51,7 +51,7 @@ LIBUTIL_EXPORT bool ensureFilePathExists(QString filenamepath); */ LIBUTIL_EXPORT bool ensureFolderPathExists(QString filenamepath); -LIBUTIL_EXPORT bool copyPath(QString src, QString dst); +LIBUTIL_EXPORT bool copyPath(QString src, QString dst, bool follow_symlinks = true); /// Opens the given file in the default application. LIBUTIL_EXPORT void openFileInDefaultProgram(QString filename); |