docs bugfix cd command

This commit is contained in:
silverqx
2022-08-11 18:07:44 +02:00
parent d637bb66d8
commit 84e049152d
2 changed files with 4 additions and 4 deletions

View File

@@ -192,14 +192,14 @@ Create a folder for the `CMake` build.
<CodeBlock className='language-powershell'>
{`cd ..
mkdir HelloWorld-builds-cmake/build-debug\n
cd HelloWorld-builds-cmake/build-debug`}
cd HelloWorld`}
</CodeBlock>
</TabItem>
<TabItem value={bash} label={bash_label}>
<CodeBlock className='language-bash'>
{`cd ..
mkdir -p HelloWorld-builds-cmake/build-debug\n
cd HelloWorld-builds-cmake/build-debug`}
cd HelloWorld`}
</CodeBlock>
</TabItem>
</Tabs>

View File

@@ -346,14 +346,14 @@ Create a folder for the `CMake` build.
<CodeBlock className='language-powershell'>
{`cd ..
mkdir tom-builds-cmake/build-debug\n
cd tom-builds-cmake/build-debug`}
cd tom`}
</CodeBlock>
</TabItem>
<TabItem value={bash} label={bash_label}>
<CodeBlock className='language-bash'>
{`cd ..
mkdir -p tom-builds-cmake/build-debug\n
cd tom-builds-cmake/build-debug`}
cd tom`}
</CodeBlock>
</TabItem>
</Tabs>