-
-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update README #440
base: master
Are you sure you want to change the base?
Update README #440
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -220,13 +220,19 @@ danger-swift command --danger-js-path path/to/danger-js | |
|
||
#### Current working directory | ||
|
||
Many people prefers using the SPM Danger configuration, because is more performing. | ||
But having a `Package.swift` on your root folder can be annoying, especially now that Xcode (from 11) doesn't put on the recents list an `xcproj` (or `xcworkspace`) when there is a `Package.swift` in the same folder. | ||
Many people prefer using the SPM Danger configuration because is more performant. | ||
But having a `Package.swift` in your root folder can be annoying, especially now that Xcode (from 11) doesn't put an `xcproj` (or `xcworkspace`) on the recents list when there is a `Package.swift` in the same folder. | ||
With the `--cwd` parameter you can specify a working directory. | ||
This allows you to have your `Package.swift` in another directory and still run danger-swift as it was executed from your project root directory. | ||
This allows you to have your `Package.swift` in another directory and still run danger-swift as it was executed from your project root directory. Since you no longer have a `Package.swift` in your root directory, you'll also have to specify that package path to `swift run`. | ||
|
||
```swift | ||
swift run danger-swift command --cwd path/to/working-directory | ||
swift run --package-path path/to/working-directory danger-swift command --cwd path/to/working-directory | ||
``` | ||
|
||
Keep in mind that Danger will automatically search for your Dangerfile in a `danger` directory placed at the root of your project. So if you put your `Dangerfile.swift` and `Package.swift` in a `danger` directory you can leave off the `--cwd` parameter (though, you still have to specify your package path to `swift run`) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can use the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IMHO, there is no information about |
||
|
||
```swift | ||
swift run --package-path danger danger-swift command | ||
``` | ||
|
||
#### Dev | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
--package-path
and--cwd
do almost the same thing, but in different ways (so you shouldn't need--cwd
if you have--package-path
), but--package-path
doesn't work in all the cases, it has still some corner cases that needs to be handled, and this is why it is not suggested yet, once it fully supported cwd should be deprecated.The correct command should be
cd path && swift run danger ci --cwd rootFolder