diff --git a/run b/run index 51ae074..f891c8c 100755 --- a/run +++ b/run @@ -11,7 +11,7 @@ TARGET = os.environ['PLUGIN_TARGET'] def deploy(source, target, keyfile): for source_file in glob.glob(source): print(f">> {source_file} -> {target}") - run(["scp", "-i", keyfile, "-o", "StrictHostKeyChecking=no", "-r", source_file, target]) + run(["scp", "-i", keyfile, "-o", "StrictHostKeyChecking=no", "-o", "PasswordAuthentication=no", "-r", source_file, target], check=True) temp_file_name = None try: