974a36818d9920f331467faf1668e602c2c0e1fe
hiram
  Fri May 1 13:39:41 2026 -0700
add correct path to hgsql refs #31811

diff --git src/hg/utils/automation/addQuickLift.py src/hg/utils/automation/addQuickLift.py
index d5b6728a270..e28f35ba065 100755
--- src/hg/utils/automation/addQuickLift.py
+++ src/hg/utils/automation/addQuickLift.py
@@ -1,28 +1,28 @@
 #!/usr/bin/python3
 ########################################################################
 ### addQuickLift.py fromDb toDb path
 ###
 ### adds entry to quickLiftChain hgcentral table if the entry does not
 ###    yet exist
 ########################################################################
 
 import subprocess
 import sys
 
 def runHgsql(sql):
-    cmd = ["hgsql", "hgcentraltest", "-N", "-e", sql]
+    cmd = ["/cluster/bin/x86_64/hgsql", "hgcentraltest", "-N", "-e", sql]
     result = subprocess.run(cmd, capture_output=True, text=True)
     if result.returncode != 0:
         sys.stderr.write(result.stderr)
         sys.exit(result.returncode)
     return result.stdout.strip()
 
 def main():
     if len(sys.argv) != 4:
         print(f"Usage: addQuickLift.py fromDb toDb path", file=sys.stderr)
         print(f"\nAdds entry to quickLiftChain hgcentral table if the entry does\nnot yet exist.", file=sys.stderr)
         sys.exit(255)
 
     fromDb, toDb, path = sys.argv[1], sys.argv[2], sys.argv[3]
 
     # Check if entry already exists