mirror of
https://github.com/jordansissel/fpm
synced 2025-08-28 03:51:42 +02:00
9 lines
158 B
Ruby
Executable File
9 lines
158 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
require "rubygems"
|
|
$: << File.join(File.dirname(__FILE__), "..", "lib")
|
|
require "fpm"
|
|
require "fpm/command"
|
|
|
|
exit(FPM::Command.run || 0)
|