Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
akohlmey committed Jun 28, 2024
1 parent c168b73 commit 0746678
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mingw-cross/cmake-win-on-linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ def is_exe(fpath):
txt = system('for f in $(find tools bench examples potentials python -name README -print); do mv -v $f $f.txt; done')
if verbose: print(txt)
# mass rename in.<name> to in.<name>.lmp
txt = system('for f in $(find bench examples -name in.\* -print); do mv -v $f $f.lmp; done')
txt = system('for f in $(find bench examples -name in.\\* -print); do mv -v $f $f.lmp; done')
if verbose: print(txt)
print("Done")

Expand Down

0 comments on commit 0746678

Please sign in to comment.