Skip to content

Commit c9e912b

Browse files
add deprecated message in omnibus build for macos pipeline
1 parent 7f6946f commit c9e912b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tasks/omnibus.py

+4
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ def build(
183183
skip_deps=False,
184184
skip_sign=False,
185185
major_version='7',
186+
release_version="nightly",
186187
hardened_runtime=False,
187188
system_probe_bin=None,
188189
go_mod_cache=None,
@@ -197,6 +198,9 @@ def build(
197198
Build the Agent packages with Omnibus Installer.
198199
"""
199200

201+
if release_version:
202+
print("The release_version argument is deprecated and will be removed soon.")
203+
200204
flavor = AgentFlavor[flavor]
201205
fips_mode = flavor.is_fips()
202206
durations = {}

0 commit comments

Comments
 (0)