This repository has been archived on 2023-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
pgls/exe/pg_ldap_sync
2023-08-02 17:24:52 +06:00

12 lines
194 B
Ruby
Executable File

#!/usr/bin/env ruby
require 'rubygems'
require 'bundler/setup'
require 'pg_ldap_sync'
begin
PgLdapSync::Application.run(ARGV)
rescue PgLdapSync::ApplicationExit => ex
exit ex.exitcode
end