mirror of
https://github.com/php/web-jenkins.git
synced 2026-03-24 09:12:16 +01:00
14 lines
170 B
PHP
Executable File
14 lines
170 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
$user = getenv('U');
|
|
|
|
$admins = array (
|
|
'tyrael',
|
|
);
|
|
|
|
if (in_array(strtolower($user), $admins)) {
|
|
echo 'jenkins-admins';
|
|
}
|
|
|
|
exit(0);
|