summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-01-23 17:15:59 +0100
committerGitHub <noreply@github.com>2018-01-23 17:15:59 +0100
commit67f06149b92e4ff8a7cbc671f2a00c4c566efa04 (patch)
treef95e0aac82a4c3ff80a46f636cd5b36c135d89da /scripts
parent07366b49573918340ac95301e1278c33aed17247 (diff)
downloadbugzilla-67f06149b92e4ff8a7cbc671f2a00c4c566efa04.tar.gz
bugzilla-67f06149b92e4ff8a7cbc671f2a00c4c566efa04.tar.xz
no bug - fix the entrypoint arbitrary command execution
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/entrypoint.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/entrypoint.pl b/scripts/entrypoint.pl
index dba64afbc..a9ed4ee8c 100755
--- a/scripts/entrypoint.pl
+++ b/scripts/entrypoint.pl
@@ -35,7 +35,7 @@ my $opts = __PACKAGE__->can("opt_$cmd") // sub { @ARGV };
my $func = __PACKAGE__->can("cmd_$cmd") // sub {
check_data_dir();
wait_for_db();
- run(@_);
+ run($cmd, @_);
};
fix_path();