From e59424f6f18532062e13d817a0e4c919e371116f Mon Sep 17 00:00:00 2001 From: Pietro Monticone <38562595+pitmonticone@users.noreply.github.com> Date: Sat, 5 Oct 2024 15:57:25 +0200 Subject: [PATCH] Make python script executable --- README.md | 2 +- scripts/customize_template.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) mode change 100644 => 100755 scripts/customize_template.py diff --git a/README.md b/README.md index 9abae62..13b4f42 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ To tailor this template to your specific project, follow these steps: ``` 1. Execute the customization script by running: ```bash - python3 scripts/customize_template.py NewProject + scripts/customize_template.py NewProject ``` where `NewProject` must be replaced by the name of your project. diff --git a/scripts/customize_template.py b/scripts/customize_template.py old mode 100644 new mode 100755 index 4b2b2c7..ecc6281 --- a/scripts/customize_template.py +++ b/scripts/customize_template.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + import os import shutil import sys