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 c900eda commit 0138a54Copy full SHA for 0138a54
copy-to-distro-specific-channel.py
@@ -50,14 +50,12 @@ def main():
50
parser.add_argument(
51
"cutoff",
52
type=str,
53
- help="Only package built after this cutoff date are uploaded. The cutoff date is a ISO 8601-formatted string."
+ help="Only package built after this cutoff date are uploaded. The cutoff date is a a string with format YYYY-MM-DD."
54
)
55
args = parser.parse_args()
56
distro = args.distro
57
58
destination_channel = f"robostack-{distro}"
59
- # debug
60
- destination_channel = f"robostack-{distro}-traversaro"
61
62
# Convert cutoff date to cutoff timestamps
63
cutoff_timestamp = int(datetime.datetime.strptime(args.cutoff, "%Y-%m-%d").timestamp()*1000.0)
0 commit comments