mirror of
https://github.com/nushell/nushell.git
synced 2024-11-26 02:13:47 +01:00
Merge pull request #628 from max-sixty/build-warnings
Fix build warnings & add CI
This commit is contained in:
commit
f05c7d6792
@ -21,5 +21,5 @@ steps:
|
|||||||
rustc -Vv
|
rustc -Vv
|
||||||
echo "##vso[task.prependpath]$HOME/.cargo/bin"
|
echo "##vso[task.prependpath]$HOME/.cargo/bin"
|
||||||
displayName: Install Rust
|
displayName: Install Rust
|
||||||
- bash: RUSTFLAGS="-D warnings" cargo test
|
- bash: RUSTFLAGS="-D warnings" cargo test --all-features
|
||||||
displayName: Run tests
|
displayName: Run tests
|
||||||
|
@ -117,7 +117,7 @@ pub fn config(
|
|||||||
let key = v.to_string();
|
let key = v.to_string();
|
||||||
|
|
||||||
if result.contains_key(&key) {
|
if result.contains_key(&key) {
|
||||||
result.remove(&key);
|
result.swap_remove(&key);
|
||||||
config::write(&result, &configuration)?;
|
config::write(&result, &configuration)?;
|
||||||
} else {
|
} else {
|
||||||
return Err(ShellError::string(&format!(
|
return Err(ShellError::string(&format!(
|
||||||
|
Loading…
Reference in New Issue
Block a user