Skip to content

Commit

Permalink
Temprorarily disable cargo fmt in .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ebkalderon committed Feb 9, 2017
1 parent 6d9c993 commit d7e88f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ before_script:

# Format the codebase, generate documentation, compile the engine, run tests.
script: |
cargo fmt -- --write-mode=diff &&
# cargo fmt -- --write-mode=diff &&
cargo local-pkgs doc --no-deps -v &&
cargo local-pkgs build -v &&
cargo test --all -v
Expand Down
2 changes: 1 addition & 1 deletion src/ecs/systems/transform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ impl System<()> for TransformSystem {
if local.is_dirty() || child.is_dirty() ||
self.dirty.contains(&child.parent()) {
let combined_transform = if let Some(parent_global) =
globals.get(child.parent()) {
globals.get(child.parent()) {
(Matrix4::from(parent_global.0) * Matrix4::from(local.matrix())).into()
} else {
local.matrix()
Expand Down

0 comments on commit d7e88f0

Please sign in to comment.