Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkenneth.skovhede@gmail.com <kenneth.skovhede@gmail.com@59da171f-624f-0410-aa54-27559c288bec>2009-04-18 19:37:24 +0400
committerkenneth.skovhede@gmail.com <kenneth.skovhede@gmail.com@59da171f-624f-0410-aa54-27559c288bec>2009-04-18 19:37:24 +0400
commitce9c6fcb403ba065b7beb78fe72cbb09f7ee341e (patch)
tree3e08f8b6389e86754d8f01fcca0d9aa7eeb63f74
parent69009daf50db5357dab0e0e821a6d5076da3877e (diff)
Added a wrapper for starting Duplicati with the newer SQLite binaries.
Fixed a typo in the linux build script. git-svn-id: https://duplicati.googlecode.com/svn/trunk@159 59da171f-624f-0410-aa54-27559c288bec
-rw-r--r--Duplicati/GUI/StartDuplicati.sh4
-rw-r--r--Installer/Package Linux release.bat5
2 files changed, 7 insertions, 2 deletions
diff --git a/Duplicati/GUI/StartDuplicati.sh b/Duplicati/GUI/StartDuplicati.sh
new file mode 100644
index 000000000..356a6c5fe
--- /dev/null
+++ b/Duplicati/GUI/StartDuplicati.sh
@@ -0,0 +1,4 @@
+#!/bin/bash
+
+export LD_LIBRARY_PATH=`pwd`
+mono Duplicati.exe \ No newline at end of file
diff --git a/Installer/Package Linux release.bat b/Installer/Package Linux release.bat
index 89ada4f39..06717740d 100644
--- a/Installer/Package Linux release.bat
+++ b/Installer/Package Linux release.bat
@@ -1,7 +1,7 @@
@echo off
cd bin\Release
-mkdir Duplicity
-cd Duplicity
+mkdir Duplicati
+cd Duplicati
cd
del * /Q
xcopy /I /Y ..\..\..\..\Duplicati\GUI\Bin\Release\* .
@@ -11,4 +11,5 @@ move sqlite-3.6.12.so libsqlite3.so.0
xcopy /I /Y "..\..\..\..\thirdparty\SQLite\Bin\linux howto.txt" .
move "linux howto.txt" linux-sqlite-readme.txt
xcopy /I /Y "..\..\..\..\thirdparty\SQLite\Dll for .Net\ManagedOnly\System.Data.SQLite.dll" .
+xcopy /I /Y ..\..\..\..\Duplicati\GUI\StartDuplicati.sh .
pause \ No newline at end of file