summaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
AgeCommit message (Collapse)Author
2021-07-16fix(windows): avoid inadvertly running exes from cwd (#2885)David Knaack
On Windows when running commands with their name instead of the path with Command::new, executable with that name from the current working directory will be executed. This PR replaces all instances of Command::new with a new create_command function which will first resolve any executable paths and avoid this issue.
2021-02-11feat: allow changing default command timeout (#2283)David Knaack
* feat: allow changing default command timeout * fix clippy * add doc to exec_cmd in Context * update docs in CONTRIBUTING.md * Fix comment in CONTRIBUTING.md Co-authored-by: Thomas O'Donnell <andytom@users.noreply.github.com> Co-authored-by: Thomas O'Donnell <andytom@users.noreply.github.com>
2020-12-20docs: Add note about Crowdin-managed files to CONTRIBUTING.md (#2013)Kevin Song
2020-10-13docs: fix typo in CONTRIBUTING.md (#1772)Adrian Duong
consistend -> consistent
2020-09-28feat: add error messaging (#1576)Tilmann Meyer
This creates a custom logger for the log crate which logs everything to a file (/tmp/starship/session_$STARSHIP_SESSION_KEY.log) and it logs everything above Warn to stderr, but only if the log file does not contain the line that should be logged resulting in an error or warning to be only logged at the first starship invocation after opening the shell.
2020-09-20docs: update clippy command in the CONTRIBUTING.md (#1665)Thomas O'Donnell
Have updated the clippy command in the CONTRIBUTING.md to match the one that is used by the CI system.
2020-09-19style: make rustfmt use the default configuration (#1661)Andrew
by adding an empty `rustfmt.toml` configuration file, thus allowing users who have their own configuration to contribute without friction.
2020-08-07test: introduce env variable mocking (#1490)Tilmann Meyer
2020-06-14docs: remove redundant settings in Contributing guide (#1326)Thomas O'Donnell
Have removed some redundant settings in the CONTRIBUTING.md since starship should be the only application using the `STARSHIP_LOG` env var.
2020-06-14fix: replacing default RUST_LOG environement variable with starship specific ↵anouar kappitou
one, to prevent interlacing (#1280) Co-authored-by: Kappitou Anouar <anourkappitou@gmail.com>
2020-03-15fix: possible fix for Intermittent Test Failures in GH Actions (#987)David Knaack
* fix: possible fix for Intermittent Test Failures in GH Actions * undo some of the chnages to directory.rs * typo * add docs
2020-01-31docs: Add git workflow to CONTRIBUTING.md (#876)Sam Rose
2020-01-06ci: Remove Docker test environment from CI (#806)Matan Kushner
2019-10-18docs: Add docs for running the starship website locally (#552)Carl Summers
2019-09-12chore: Rename integration_test to acceptance_test (#356)Matan Kushner
2019-09-09docs: Include Docker related information in CONTRIBUTING (#321)Hofer-Julian
2019-08-21fix: Failing Tests if home is a git directory (#214)Kevin Song
2019-06-15docs: Add CONTRIBUTNG.md (#79)Matan Kushner