This is an automated email from the ASF dual-hosted git repository. joemcdonnell pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit 4bc86ac638fb85deda317b9b1dfd1f574fa0553b Author: Joe McDonnell <[email protected]> AuthorDate: Tue Nov 8 16:54:28 2022 -0800 IMPALA-11714: Fix resolve_minidumps.py on Ubuntu 16 resolve_minidumps.py uses /bin/env. Some distributions support that, but that path does not exist on Ubuntu 16. This switches to use /usr/bin/env, which is available everywhere. Change-Id: Iecde8713bc141f2a15babf3886848eacad8910aa Reviewed-on: http://gerrit.cloudera.org:8080/19225 Reviewed-by: Michael Smith <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> --- bin/resolve_minidumps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/resolve_minidumps.py b/bin/resolve_minidumps.py index 0a0ba0c61..e3f00be70 100755 --- a/bin/resolve_minidumps.py +++ b/bin/resolve_minidumps.py @@ -1,4 +1,4 @@ -#!/bin/env python3 +#!/usr/bin/env python3 # # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file
