Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
2b222a69
Commit
2b222a69
authored
May 07, 2012
by
Håkan Jerning
Committed by
Frédéric Buclin
May 07, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 744338: jobqueue.pl won't work if not called from the bugzilla/ root directory
r/a=LpSolit
parent
92a81752
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
jobqueue.pl
jobqueue.pl
+7
-1
No files found.
jobqueue.pl
View file @
2b222a69
...
...
@@ -7,8 +7,14 @@
# defined by the Mozilla Public License, v. 2.0.
use
strict
;
use
Cwd
qw(abs_path)
;
use
File::
Basename
;
BEGIN
{
chdir
dirname
(
$0
);
}
BEGIN
{
# Untaint the abs_path.
my
(
$a
)
=
abs_path
(
$0
)
=~
/^(.*)$/
;
chdir
dirname
(
$a
);
}
use
lib
qw(. lib)
;
use
Bugzilla
;
...
...
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