Fix test for directory
[git-tools-moved-to-github.git] / id-new-project / id-new-project.sh
index 89d190b..3fa1bcc 100755 (executable)
@@ -3,7 +3,7 @@
 usage() {
         echo ""
        echo "Usage:"
-       echo "id-new-project.sh srcdir description {pub/private}"
+       echo "id-new-project.sh srcdir description {pub/private/admin}"
        echo "For example:"
        echo "id-new-project.sh ../myproj \"Which does good things\" private"
        exit 1
@@ -14,8 +14,8 @@ DESC=$2
 TYPE=$3
 
 case "${TYPE}" in
-       pub | private) ;;
-       * ) echo "invalid type: '$TYPE', use pub or private"; usage ;;
+       pub | private | admin ) ;;
+       * ) echo "invalid type: '$TYPE', use pub or private or admin "; usage ;;
 esac
 
 if test ! -e post-receive; then