Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
50f07bc4
Commit
50f07bc4
authored
Sep 07, 2012
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stackhandler: simplify
parent
4dd84882
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
11 deletions
+5
-11
extras/misc/stackhandler.py
extras/misc/stackhandler.py
+5
-11
No files found.
extras/misc/stackhandler.py
View file @
50f07bc4
...
...
@@ -33,9 +33,9 @@
#####################################################################
VLC_VERSION
=
"2.0.3"
VLC_BIN
=
"/home/videolan/vlc/
2.0.3/vlc-2.0.3
/vlc.exe"
VLC_BASE_DIR
=
"/home/videolan/vlc/
2.0.3/vlc-2.0.3
/"
VLC_SYMBOLS_DIR
=
"/home/videolan/vlc/
2.0.3/symbols-2.0.3
/"
VLC_BIN
=
"/home/videolan/vlc/
"
+
VLC_VERSION
+
"/vlc-"
VLC_VERSION
+
"
/vlc.exe"
VLC_BASE_DIR
=
"/home/videolan/vlc/
"
+
VLC_VERSION
+
"/vlc-"
+
VLC_VERSION
+
"
/"
VLC_SYMBOLS_DIR
=
"/home/videolan/vlc/
"
+
VLC_VERSION
+
"/symbols-"
+
VLC_VERSION
+
"
/"
WORKDIR
=
"/srv/ftp/crashes-win32"
FILE_MATCH
=
r"^\
d{
14}$"
FILE_MAX_SIZE
=
10000
...
...
@@ -271,14 +271,9 @@ def moveFile(filename, outdated = False):
### ENTRY POINT ###
if len(sys.argv) == 1:
print("
Folder
mode
")
batch = True
if len(sys.argv) != 2:
batch = len(sys.argv) != 2
if batch:
print("
Running
in
batch
mode
")
batch = True
else:
batch = False
input_files = []
if not batch:
...
...
@@ -311,4 +306,3 @@ for input_file in input_files:
processFile(input_file)
except Exception as ex:
print(traceback.format_exc())
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment