Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fa1a8673f6 | |||
|
d08cc144ed
|
|||
| 073026d7c9 | |||
|
94980be3e5
|
@@ -2,6 +2,12 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [1.0.1](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v1.0.0..v1.0.1) - 2025-09-27
|
||||
|
||||
### ⚙️ Miscellaneous Tasks
|
||||
|
||||
- *(scripts)* Check for existing Python installation - ([94980be](https://git.0xmax42.io/actions/auto-changelog-release-action/commit/94980be3e5e5827b75edf9abeab0987709fa3122))
|
||||
|
||||
## [1.0.0](https://git.0xmax42.io/actions/auto-changelog-release-action/compare/v0.4.3..v1.0.0) - 2025-09-27
|
||||
|
||||
### 🚀 Features
|
||||
|
||||
@@ -3,6 +3,11 @@
|
||||
# Usage: sudo ./install-python.sh
|
||||
set -euo pipefail
|
||||
|
||||
if command -v python3 >/dev/null 2>&1; then
|
||||
echo "ℹ️ Python $(python3 --version) is already installed"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
apt update
|
||||
apt install -y python3
|
||||
|
||||
|
||||
Reference in New Issue
Block a user