mirror of https://github.com/sbt/sbt.git
re #1: Project definition now starting with capital letter (file and class).
This commit is contained in:
parent
dc7b0285cc
commit
91f89bb873
|
|
@ -16,7 +16,8 @@ if [ -z "$PROJECT" ]; then
|
|||
fi
|
||||
|
||||
DIR=$(echo ${PROJECT} | tr '[A-Z]' '[a-z]')
|
||||
PROJECT_CLASS=$(echo $PROJECT | sed -e 's/[^a-zA-Z_]//g;')Project
|
||||
PROJECT_UC=$(echo ${PROJECT:0:1} | tr '[a-z]' '[A-Z]')${PROJECT:1}
|
||||
PROJECT_CLASS=$(echo $PROJECT_UC | sed -e 's/[^a-zA-Z_]//g;')Project
|
||||
|
||||
mkdir $DIR
|
||||
cd $DIR
|
||||
|
|
|
|||
Loading…
Reference in New Issue