Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ You can use these accounts to explore the platform:
1. Clone the repository
```
git clone https://github.com/yourusername/wirebase.git
cd wirebase
cd wirebase-social
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The git clone https://github.com/yourusername/wirebase.git command on line 68 will create a directory named wirebase by default.
Consequently, the updated command cd wirebase-social on this line will likely fail because the directory wirebase-social would not exist immediately after running the clone command as written.

Could you please clarify the intended final directory name the user should cd into?

  • If the repository is cloned as wirebase (which is the default behavior for the command on line 68) and the project root is directly within this wirebase directory, then this command should be cd wirebase.
  • If the intention is for the user to work within a directory specifically named wirebase-social, the git clone command on line 68 would need to be modified (e.g., to git clone https://github.com/yourusername/wirebase.git wirebase-social). This would be a change to line 68, which is outside this PR's current scope but necessary for cd wirebase-social to function as intended.

To make the instructions consistent with the current git clone command on line 68, this line would need to be:

Suggested change
cd wirebase-social
cd wirebase

Comment on lines +68 to +69
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

issue: Potential inconsistency between cloned directory and cd command.

Update either the clone command or the directory name in the cd command so they match, to avoid confusion or errors.

```

2. Install dependencies
Expand Down