mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-28 18:18:55 +00:00
14 lines
275 B
Bash
Executable File
14 lines
275 B
Bash
Executable File
#!/usr/bin/env ruby
|
|
# frozen_string_literal: true
|
|
|
|
begin
|
|
# Development
|
|
require "omnibus"
|
|
rescue LoadError
|
|
# Production
|
|
print ENV.fetch("GIT_SHA", "deadbeef")
|
|
else
|
|
Omnibus::Config.append_timestamp false
|
|
print Omnibus::BuildVersion.git_describe.split(".").last
|
|
end
|