Skip to content

Commit 1fb705d

Browse files
committedOct 23, 2024·
fixed typo
Signed-off-by: Sachin Panayil <sachinpanayil01@gmail.com>
1 parent 044ec56 commit 1fb705d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed
 

‎tier0/hooks/post_gen_project.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def addTopic():
2929

3030
subprocess.call(["git", "init", "-b", "main"])
3131
subprocess.call(["git", "add", "."])
32-
subprocess.call(["git", "commit", "-m", "inital commit"])
32+
subprocess.call(["git", "commit", "-m", "initial commit"])
3333

3434
if CREATE_REPO == "True":
3535
createGithubRepo()

‎tier1/hooks/post_gen_project.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def moveCookiecutterFile():
4242
def main():
4343
subprocess.call(["git", "init", "-b", "main"])
4444
subprocess.call(["git", "add", "."])
45-
subprocess.call(["git", "commit", "-m", "inital commit"])
45+
subprocess.call(["git", "commit", "-m", "initial commit"])
4646

4747
if CREATE_REPO == "True":
4848
createGithubRepo()

‎tier2/hooks/post_gen_project.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def moveCookiecutterFile():
8383
def main():
8484
subprocess.call(["git", "init", "-b", "main"])
8585
subprocess.call(["git", "add", "."])
86-
subprocess.call(["git", "commit", "-m", "inital commit"])
86+
subprocess.call(["git", "commit", "-m", "initial commit"])
8787

8888
if CREATE_REPO == "True":
8989
createGithubRepo()

‎tier3/hooks/post_gen_project.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def moveCookiecutterFile():
7676
def main():
7777
subprocess.call(["git", "init", "-b", "main"])
7878
subprocess.call(["git", "add", "."])
79-
subprocess.call(["git", "commit", "-m", "inital commit"])
79+
subprocess.call(["git", "commit", "-m", "initial commit"])
8080

8181
if CREATE_REPO == "True":
8282
createGithubRepo()

‎tier4/hooks/post_gen_project.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def moveCookiecutterFile():
7676
def main():
7777
subprocess.call(["git", "init", "-b", "main"])
7878
subprocess.call(["git", "add", "."])
79-
subprocess.call(["git", "commit", "-m", "inital commit"])
79+
subprocess.call(["git", "commit", "-m", "initial commit"])
8080

8181
if CREATE_REPO == "True":
8282
createGithubRepo()

0 commit comments

Comments
 (0)
Please sign in to comment.