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