Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

fix deletion of our modules (courtesy @moylop260) #53

Merged
merged 1 commit into from
Aug 20, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ install:
- travis_install_nightly
- git clone --depth=1 https://github.com/odoo/odoo-extra ~/odoo-extra
# odoo-extra has a bunch of v9 modules which aren't compatible, remove them
- rm -rf $(ls | grep -v runbot$)
- (cd ~/odoo-extra; rm -rf $(ls | grep -v runbot$))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are those outer parenthesis necessary?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

they make a subshell, so there is no need to cd .. afterwards.


script:
- travis_run_tests
Expand Down