Skip to content
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

remove unneeded executable permissions from some files #2470

Merged
merged 1 commit into from
Jan 28, 2019
Merged
Show file tree
Hide file tree
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
Empty file modified .gitignore
100755 → 100644
Empty file.
5 changes: 3 additions & 2 deletions maintainer/CI/fix_style.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ if ! $AUTOPEP8 --version | grep -qEo "autopep8 $AUTOPEP8_VER"; then
exit 2
fi

find . \( -name '*.hpp' -o -name '*.cpp' -o -name '*.cu' \) -not -path './libs/*' | xargs -n 5 -P 8 $CLANGFORMAT -i -style=file || exit 3
find . \( -name '*.py' -o -name '*.pyx' -o -name '*.pxd' \) -not -path './libs/*' | xargs -n 5 -P 8 $AUTOPEP8 --ignore=E266,W291,W293 --in-place --aggressive --aggressive || exit 3
find . \( -name '*.hpp' -o -name '*.cpp' -o -name '*.cu' \) -not -path './libs/*' | xargs -r -n 5 -P 8 $CLANGFORMAT -i -style=file || exit 3
find . \( -name '*.py' -o -name '*.pyx' -o -name '*.pxd' \) -not -path './libs/*' | xargs -r -n 5 -P 8 $AUTOPEP8 --ignore=E266,W291,W293 --in-place --aggressive --aggressive || exit 3
find . -type f -executable ! -name '*.sh' ! -name '*.py' ! -name '*.sh.in' ! -name pypresso.cmakein -not -path './.git/*' | xargs -r -n 5 -P 8 chmod -x || exit 3

if [ "$CI" != "" ]; then
maintainer/gh_post_style_patch.py
Expand Down
Empty file modified maintainer/Espresso.spec
100755 → 100644
Empty file.
Empty file modified maintainer/configs/maxset.hpp
100755 → 100644
Empty file.
Empty file modified maintainer/configs/nocheck-maxset.hpp
100755 → 100644
Empty file.
Empty file modified src/core/bonded_interactions/dihedral.hpp
100755 → 100644
Empty file.
Empty file modified src/core/electrostatics_magnetostatics/p3m.hpp
100755 → 100644
Empty file.
Empty file modified src/core/polymer.cpp
100755 → 100644
Empty file.
Empty file modified src/core/pressure.cpp
100755 → 100644
Empty file.