forked from mirrors/qmk_firmware
Add a help message to new_project.sh
This commit is contained in:
parent
0da53d3811
commit
dc451b505b
1 changed files with 5 additions and 0 deletions
|
@ -2,6 +2,11 @@
|
|||
# Script to make a new quantum project
|
||||
# Jack Humbert 2015
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
echo "Usege: $0 <keyboard_name>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
KEYBOARD=$1
|
||||
KEYBOARD_UPPERCASE=$(echo $1 | awk '{print toupper($0)}')
|
||||
|
||||
|
|
Loading…
Reference in a new issue