#!/usr/bin/ruby

# The purpose of this executable is to test that gitlab-shell logging
# works correctly in combination with Kernel.exec.

$:.unshift File.expand_path('../lib', __FILE__)
require 'gitlab_init'
require 'gitlab_logger'

$logger.info(ARGV.first)
Kernel.exec('true')
