Skip to content

Commit 16f7a80

Browse files
committed
[FIX] Fixed #96 where an absolute path wasn't required.
Also modified issue template
1 parent 5b0da9f commit 16f7a80

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
## Steps to Reproduce the Problem
88

99
1.
10-
1.
11-
1.
10+
2.
11+
3.
1212

1313
## Specifications
1414

42PyChecker.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ def main():
9494
if args.path == "":
9595
parser.error("`--path' needs to be specified in order for 42PyChecker"
9696
" to know where your project is.")
97-
97+
if args.path[0] != '/':
98+
parser.error("`--path' needs to have an absolute path")
9899
# If a test is disabled and the libft project is selected, the parser will
99100
# return an error.
100101
if args.no_libftest and args.project != "libft":

0 commit comments

Comments
 (0)