Skip to content

Commit

Permalink
Fixed name replacement script for cases when name contain more then o…
Browse files Browse the repository at this point in the history
…ne 'minus' signs.
  • Loading branch information
svetlyak40wt committed Aug 2, 2010
1 parent ae8d7af commit 4a9d00d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion set_name.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

PROJECT=$1
LOWER_PROJECT=${PROJECT/-/_}
LOWER_PROJECT=${PROJECT//-/_}

find . \
\( -not \( -path './parts/*' -or -path './bin/*' -or -path './develop-eggs/*' \) \) -and \
Expand Down

0 comments on commit 4a9d00d

Please sign in to comment.