-
Notifications
You must be signed in to change notification settings - Fork 19
Mohammed A #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Mohammed A #1
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1 +1,35 @@ | ||||||
| # Write your code here | ||||||
| #!/usr/bin/env bash | ||||||
| set -e | ||||||
| echo "creating project.." | ||||||
| mkdir project | ||||||
| cd project | ||||||
| git init | ||||||
| mkdir resources | ||||||
| mkdir src | ||||||
| mkdir src/database | ||||||
| mkdir src/profile | ||||||
| touch README.md | ||||||
| touch settings.conf | ||||||
| touch resources/family\ picture.jpg | ||||||
|
||||||
| touch resources/family\ picture.jpg | |
| touch "resources/family picture.jpg" |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mind the casing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Message is descriptive.
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Casing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| <paste here your github username> | ||
| mohammedalfakih-dev |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Details matter: the instructions specify the format of this string as "Creating project...". It should start with a capital C and end with three periods.
The autograding check currently ignores case and only checks the start of the string without the periods. In future, more stringent checks could flag this as an error.