Skip to content

Commit 0a8f556

Browse files
tools: remove no longer necessary DownloadBaseSnapshotAction usage from package-toolchain
1 parent 4d5e182 commit 0a8f556

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/build/package-toolchain

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import os
55
import argparse
66
import datetime
77
import re
8-
from build_support.actions import Action, ActionRunner, DownloadBaseSnapshotAction, derive_options_from_args
8+
from build_support.actions import Action, ActionRunner, derive_options_from_args
99

1010

1111
SDK_GENERATOR_PKG_PATH = os.path.join(
@@ -203,7 +203,7 @@ def main():
203203
parser.add_argument("--daily-snapshot", action="store_true", help="Create a daily snapshot")
204204
options = derive_options_from_args(sys.argv[1:], parser)
205205
now = derive_date_suffix_from_base_tag(options.tag)
206-
actions = [DownloadBaseSnapshotAction(options)]
206+
actions = []
207207

208208
packaging_dir = os.path.join(
209209
os.path.dirname(__file__), '..', '..', '..', 'build', 'Packaging')

0 commit comments

Comments
 (0)