mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-22 05:50:47 +02:00
6 lines
280 B
Ruby
Executable file
6 lines
280 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
if File.exist?("#{__dir__}/../.use-docker")
|
|
exec("#{__dir__}/../script/docker-environment", $PROGRAM_NAME, *ARGV) unless File.exist?("/etc/app-env")
|
|
end
|
|
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
|
|
load Gem.bin_path('bundler', 'bundle')
|