X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/50abee31d6dad724c0d4b8a452eeb330364cde85..7334ee9ee6350f2b5f0384d8166e7c4f58d86864:/sdk/cwl/bin/cwl-runner?ds=sidebyside diff --git a/sdk/cwl/bin/cwl-runner b/sdk/cwl/bin/cwl-runner index 7008ae4990..8ea3f3d3e2 100755 --- a/sdk/cwl/bin/cwl-runner +++ b/sdk/cwl/bin/cwl-runner @@ -1,7 +1,10 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 import sys -from arvados.commands.cwl_runner import main +from arvados_cwl import main sys.exit(main(sys.argv[1:], sys.stdout, sys.stderr))