We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b0da9f commit 16f7a80Copy full SHA for 16f7a80
.github/ISSUE_TEMPLATE.md
@@ -7,8 +7,8 @@
7
## Steps to Reproduce the Problem
8
9
1.
10
- 1.
11
+ 2.
+ 3.
12
13
## Specifications
14
42PyChecker.py
@@ -94,7 +94,8 @@ def main():
94
if args.path == "":
95
parser.error("`--path' needs to be specified in order for 42PyChecker"
96
" to know where your project is.")
97
-
+ if args.path[0] != '/':
98
+ parser.error("`--path' needs to have an absolute path")
99
# If a test is disabled and the libft project is selected, the parser will
100
# return an error.
101
if args.no_libftest and args.project != "libft":
0 commit comments