automated-helm-generator/create-helm-chart.sh
2025-02-11 12:52:05 -06:00

12 lines
No EOL
276 B
Bash

#!/bin/bash
# Check if the call should use `python` or `python3`
if command -v python3 &> /dev/null
then
python=python3
else
python=python
fi
# Call the Python script with the arguments passed to the PowerShell script
$python $(realpath ./create-helm-chart.py) $args