changeset 171:01c650c5aa18

cont
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 16 Apr 2018 21:31:34 +0200 (2018-04-16)
parents a574a82f3175
children fa8819999d0d db6cc80efed0
files NEWS Resources/SyncOrthancFolder.py
diffstat 2 files changed, 1 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/NEWS	Mon Apr 16 17:19:57 2018 +0200
+++ b/NEWS	Mon Apr 16 21:31:34 2018 +0200
@@ -8,6 +8,7 @@
 * Fix issue 62 (use correct type for lo_read() value)
 * Fix issue 63 (allow to connect without specifing username and/or port)
 * Fix issue 68 (PostgreSQL plugin needs extra flags to compile)
+* Resort to Orthanc framework
 * Support of Linux Standard Base, OpenBSD and FreeBSD
 
 
--- a/Resources/SyncOrthancFolder.py	Mon Apr 16 17:19:57 2018 +0200
+++ b/Resources/SyncOrthancFolder.py	Mon Apr 16 21:31:34 2018 +0200
@@ -28,8 +28,6 @@
     'orthanc/OrthancCppDatabasePlugin.h',
 ]
 
-EXE = [ ]
-
 
 def Download(x):
     branch = x[0]
@@ -65,10 +63,3 @@
 
 pool = multiprocessing.Pool(10)  # simultaneous downloads
 pool.map(Download, commands)
-
-
-for exe in EXE:
-    path = os.path.join(TARGET, exe)
-    st = os.stat(path)
-    os.chmod(path, st.st_mode | stat.S_IEXEC)
-