Skip to content

Commit

Permalink
cd
Browse files Browse the repository at this point in the history
  • Loading branch information
r-dent committed Feb 19, 2024
1 parent 8c8c050 commit 7aa09c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,6 @@ jobs:
bundle exec pod install
- name: Run SwitLint
run: ./Pods/SwiftLint/swiftlint
run: |
cd Example
./Pods/SwiftLint/swiftlint
2 changes: 1 addition & 1 deletion Example/Example App/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ struct ContentView: View {
Button("Start the Stream Deck Simulator") {
StreamDeckSimulator.show(streamDeck: .mini)
}
} else { ForEach(devices) { device in
} else { ForEach(devices) { device in
VStack(alignment: .leading) {
Text("__\(device.info.productName)__")
Text("Serial: \(device.info.serialNumber)")
Expand Down
2 changes: 1 addition & 1 deletion Sources/StreamDeckSimulator/StreamDeckSimulator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public final class StreamDeckSimulator {
close();

guard let scene = activeScene else {
return }
return }

lastSelectedProduct = product

Expand Down

0 comments on commit 7aa09c0

Please sign in to comment.