We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f6946f commit c9e912bCopy full SHA for c9e912b
tasks/omnibus.py
@@ -183,6 +183,7 @@ def build(
183
skip_deps=False,
184
skip_sign=False,
185
major_version='7',
186
+ release_version="nightly",
187
hardened_runtime=False,
188
system_probe_bin=None,
189
go_mod_cache=None,
@@ -197,6 +198,9 @@ def build(
197
198
Build the Agent packages with Omnibus Installer.
199
"""
200
201
+ if release_version:
202
+ print("The release_version argument is deprecated and will be removed soon.")
203
+
204
flavor = AgentFlavor[flavor]
205
fips_mode = flavor.is_fips()
206
durations = {}
0 commit comments