File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
RUN: rm -rf %t.dir
7
7
RUN: mkdir -p %t.dir/Project
8
8
RUN: %{swift-package} --package-path %t.dir/Project init --type executable
9
- RUN: rm -rf %t.dir/Project/Sources/Project/ *
10
- RUN: echo "print(\"Hello, World!\")" >%t.dir/Project/Sources/Project/ main.swift
9
+ RUN: rm -rf %t.dir/Project/Sources/*
10
+ RUN: echo "print(\"Hello, World!\")" >%t.dir/Project/Sources/main.swift
11
11
RUN: %{swift-build} --package-path %t.dir/Project 2>&1 | tee %t.build-log
12
12
```
13
13
Original file line number Diff line number Diff line change 6
6
RUN: rm -rf %t.dir
7
7
RUN: mkdir -p %t.dir/secho
8
8
RUN: %{swift-package} --package-path %t.dir/secho init --type executable
9
- RUN: rm -rf %t.dir/secho/Sources/secho/ *
10
- RUN: echo "import Foundation; print(CommandLine.arguments.dropFirst().joined(separator: \" \"))" >%t.dir/secho/Sources/secho/ main.swift
9
+ RUN: rm -rf %t.dir/secho/Sources/*
10
+ RUN: echo "import Foundation; print(CommandLine.arguments.dropFirst().joined(separator: \" \"))" >%t.dir/secho/Sources/main.swift
11
11
RUN: %{swift-run} --package-path %t.dir/secho secho 1 "two" 2>&1 | tee %t.run-log
12
12
```
13
13
You can’t perform that action at this time.
0 commit comments