Private GIT

Skip to content
Snippets Groups Projects
Commit 09b1d4b6 authored by Alexandre Beloin's avatar Alexandre Beloin
Browse files

Added check in manual postprocess to remove hard/sym links in windows

parent cdcb2274
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,12 @@
<td>
<select name="process_method" id="process_method" class="form-control form-control-inline input-sm" >
#set $process_method_text = {'copy': "Copy", 'move': "Move", 'hardlink': "Hard Link", 'symlink' : "Symbolic Link"}
#for $curAction in ('copy', 'move', 'hardlink', 'symlink'):
#if sys.platform == 'win32'
#set $process_action = ('copy', 'move')
#else
#set $process_action = ('copy', 'move', 'hardlink', 'symlink')
#end if
#for $curAction in $process_action:
#if $sickbeard.PROCESS_METHOD == $curAction:
#set $process_method = "selected=\"selected\""
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment