-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: increase indentation of tabbed code block
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,23 +46,23 @@ First, let's see the whole build process in Asciinema recording: | |
Let's clone the project and configure `TOOLCHAINS` environment variable with the version of the installed Swift 6. | ||
|
||
|
||
{{< tabs groupId="config" >}} | ||
{{% tab name="macOS" %}} | ||
{{< tabs groupId="config" >}} | ||
{{% tab name="macOS" %}} | ||
```shell | ||
git clone [email protected]:apple/swift-embedded-examples.git --single-branch --branch main | ||
#export TOOLCHAINS=org.swift.600202406111a | ||
export TOOLCHAINS=$(plutil -extract CFBundleIdentifier raw /Library/Developer/Toolchains/swift-latest.xctoolchain/Info.plist) | ||
cd swift-embedded-examples/esp32-led-strip-sdk | ||
``` | ||
{{% /tab %}} | ||
{{% /tab %}} | ||
|
||
{{% tab name="Linux" %}} | ||
{{% tab name="Linux" %}} | ||
```shell | ||
git clone [email protected]:apple/swift-embedded-examples.git --single-branch --branch main | ||
cd swift-embedded-examples/esp32-led-strip-sdk | ||
``` | ||
{{% /tab %}} | ||
{{< /tabs >}} | ||
{{% /tab %}} | ||
{{< /tabs >}} | ||
|
||
|
||
2. **Set the Target**: | ||
|