Skip to content

Commit 0138a54

Browse files
authored
Update copy-to-distro-specific-channel.py
1 parent c900eda commit 0138a54

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

copy-to-distro-specific-channel.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,12 @@ def main():
5050
parser.add_argument(
5151
"cutoff",
5252
type=str,
53-
help="Only package built after this cutoff date are uploaded. The cutoff date is a ISO 8601-formatted string."
53+
help="Only package built after this cutoff date are uploaded. The cutoff date is a a string with format YYYY-MM-DD."
5454
)
5555
args = parser.parse_args()
5656
distro = args.distro
5757

5858
destination_channel = f"robostack-{distro}"
59-
# debug
60-
destination_channel = f"robostack-{distro}-traversaro"
6159

6260
# Convert cutoff date to cutoff timestamps
6361
cutoff_timestamp = int(datetime.datetime.strptime(args.cutoff, "%Y-%m-%d").timestamp()*1000.0)

0 commit comments

Comments
 (0)